linuxshell判断当前用户是否是root用户 [操作系统入门]
环境变量UID中保存的是用户ID。 root用户的UID是0。
#! /bin/bashif [ $UID -ne 0 ]; thenecho Non root user. Please run as root.
else
echo Root user
fi
linux-shell 判断当前用户是否是root用户
以上是 linuxshell判断当前用户是否是root用户 [操作系统入门] 的全部内容, 来源链接: utcz.com/z/519305.html