红联Linux门户
Linux帮助

shell脚本判断执行用户

发布时间:2016-03-24 15:08:21来源:linux网站作者:飞翔雨

在脚本中,判断执行者是否为root。


判断方法1,

#!/bin/bash
if [ `whoami` != "root" ];then
echo " only root can run me"
exit 1
fi


判断方法2(但是用sudo执行回报脚本有语法错误,不知为何,有知道的高手请回复我)。

if [ $UID == 0 ];then
echo "you are root"
fi


本文永久更新地址:http://www.linuxdiyf.com/linux/19211.html