红联Linux门户
Linux帮助

Linux shell脚本判断当前是否为root用户

发布时间:2014-07-24 21:49:20来源:linux网站作者:zinss

root标识

whoami(显示当前用户的用户名)

if [ `whoami` = "root" ];then
echo "root用户!"
else
echo "非root用户!"
fi

id -u (显示当前用户的uid)

if [ `id -u` -eq 0 ];then
echo "root用户!"
else
echo "非root用户!"
fi


后记

今天在调研Ubuntu的开机自启动的时候,遇到了判断当前用户身份的需求,因此写个脚本记录一下。