mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-14 20:14:00 +01:00
13 lines
253 B
Bash
Executable File
13 lines
253 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mem=$(LC_ALL=C free | awk '/Mem:/ {print $4}')
|
|
swap=$(LC_ALL=C free | awk '/Swap:/ {print $3}')
|
|
|
|
if [ $mem -lt $swap ]; then
|
|
echo "ERROR: not enough RAM to write swap back, nothing done" >&2
|
|
exit 1
|
|
fi
|
|
|
|
swapoff -a && swapon -a
|
|
exit 0
|