Created
April 20, 2012 11:17
-
-
Save To1ne/2427847 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
err="not enough RAM to write swap back, nothing done" | |
mem=`free|grep Mem:|awk '{print $4}'` | |
swap=`free|grep Swap:|awk '{print $3}'` | |
test $mem -lt $swap && echo -e $err && exit 1 | |
swapoff -a && swapon -a && | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment