4
¿Cómo detener un script se ejecute si no es la raíz (y echo “No está en ejecución como root! Saliendo ...”)
Aquí está mi fuente: #!/bin/bash echo "Running script to free general cached memory!" echo ""; echo "Script must be run as root!"; echo ""; echo "Clearing swap!"; swapoff -a && swapon -a; echo ""; echo "Clear inodes and page file!"; echo 1 > /proc/sys/vm/drop_caches; echo ""; Despeja cachés y esas …
17
shell-script
root