shell脚本判断当前是否是root用户并退出shell程序
2019-03-15 本文已影响0人
春苟哈皮
if [ `whoami` != "root" ];then
echo "当前用户并非sudo"
exit
fi
注意
whoami
和root
与 中括号之间一定要有一个空格
if [ `whoami` != "root" ];then
echo "当前用户并非sudo"
exit
fi
注意
whoami
和root
与 中括号之间一定要有一个空格