linux shell4 判断登陆用户,然后重启关闭系统

# 其中的$LOGNAME 就是获取登陆的用户名


#!/bin/bash
#  if user is root rebold  else  change to root than  rebold
user=$LOGNAME
echo "$user"
if [ "$user" = "root" ]
then
echo " user is  root  rebort system"
init 6
else
echo "$user  end "
exit  1
fi


你可能感兴趣的:(linux shell4 判断登陆用户,然后重启关闭系统)