服务器之家

服务器之家 > 正文

linux 判断当前用户是否是root

时间:2019-12-13 13:34     来源/作者:Linux教程网

linux 中,如何判断当前用户是否是root 呢? 
判断当前用户是否是root 

复制代码

代码如下:


#---------------------------- root user check ---------------------start 
if [ `id -u` -ne 0 ]; then 
echo "Please re-run ${this_file} as root." 
exit 1 
fi 
#---------------------------- root user check ---------------------end 
if [ x"$USER" = x"" ];then 
if id |grep "^uid=0(root)">/dev/null ;then 

else 
echo "Please rerun `basename $0` as root ." 
exit 1 
fi 
else 
if [ ! x"$USER" = x"root" ];then 
echo "Please rerun `basename $0` as root ." 
exit 1 
fi 
fi 
#=============== check current user start ================ 
if [ ! $USER = root ];then 
echo "Please rerun this script as root ." 
exit 1 
fi 
#=============== check current user end ================ 
#!/bin/sh 
if id |grep "^uid=0(root)">/dev/null ;then 
echo is root 
else 
echo not root 
fi 
check_user(){ 
if [ $UID -ne 0 ];then 
echo "Current user is not ROOT." 
echo "Please rerun the installer as Root user." 
exit 11 
fi 

标签:

相关文章

热门资讯

玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
配置IIS网站web服务器的安全策略配置解决方案
配置IIS网站web服务器的安全策略配置解决方案 2019-05-23
Nginx服务器究竟是怎么执行PHP项目
Nginx服务器究竟是怎么执行PHP项目 2019-05-24
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情
华为nova5pro和p30pro哪个好 华为nova5pro和华为p30pro对比详情 2019-06-22
返回顶部