10 lines
199 B
Bash
Executable File
10 lines
199 B
Bash
Executable File
#!/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 |