Bash - скрипт проверки root
Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2024
Bash - скрипт проверки root
# Am I root? if [ "x$(id -u)" != 'x0' ]; then echo 'Error: this script can only be executed by root' exit 1 fi
exit 1 - завершение с ошибкой != - не равно (сравнение с строк)