mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-16 04:42:55 +08:00
24 lines
469 B
Bash
24 lines
469 B
Bash
#!/bin/bash
|
|
|
|
# free up cache RAM - run as root
|
|
# http://linux-mm.org/Drop_Caches
|
|
|
|
# uname -a
|
|
#Darwin davesimac-2.local 15.6.0 Darwin
|
|
|
|
[ `uname -a |grep -ci darwin` -gt 0 ] && exit 1;
|
|
|
|
time sync
|
|
|
|
free
|
|
echo 1 > /proc/sys/vm/drop_caches # free pagecache
|
|
|
|
#To free dentries and inodes:
|
|
[ "$*" = "2" ] && echo 2 > /proc/sys/vm/drop_caches
|
|
|
|
#To free pagecache, dentries and inodes:
|
|
[ "$*" = "3" ] && echo 3 > /proc/sys/vm/drop_caches
|
|
#echo 3 > /proc/sys/vm/drop_caches
|
|
|
|
free
|