summaryrefslogtreecommitdiff
path: root/bin/common/drop_cache
blob: 4833597d4f98894cd1b158671a455c233588d580 (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 | tee /proc/sys/vm/drop_caches >/dev/null
echo "cache cleared."