dotfiles/.local/bin/gibram

10 lines
199 B
Plaintext
Raw Normal View History

#!/bin/bash
echo 'Before:'
free -h
sleep 1s
sync && echo 3 > /proc/sys/vm/drop_caches && swapoff -a && swapon -a && printf '\n%s\n' 'Ram-cache and Swap Cleared'
sleep 1s
echo 'After:'
free -h
exit 0