10 lines
199 B
Plaintext
10 lines
199 B
Plaintext
|
#!/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
|