summaryrefslogtreecommitdiff
path: root/bin/common/drop_cache
blob: e4fc039cf96ab38cc61c5ca9464562a4d74f1e18 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
if [ "$(id -u)" -ne 0 ]
then
	echo "Please run as root."
	exit 1
fi
echo 3 > /proc/sys/vm/drop_caches
echo "cache cleared."