rootユーザかどうかを判断する

ファイル:rootyn.sh
中身:
if [ “$(id -u)" != “0" ]; then
echo “このスクリプトはrootとして実行する必要がある" 1>&2
exit 1
fi

Source

Posted by arkgame