码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本判断执行用户

时间:2015-07-25 11:58:53      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:

在脚本中,判断执行者是否为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

 

shell脚本判断执行用户

标签:

原文地址:http://www.cnblogs.com/zhaojk2010/p/4675606.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!