sh Bash:检查用户是否为root

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Bash:检查用户是否为root相关的知识,希望对你有一定的参考价值。

# OVERVIEW
#
# Check if the current user is root 
#
# USAGE
#
# if [ isRoot ]; then
#	echo "user is root"
# else
#	echo "not root"
#fi

isRoot() {
	if ["/usr/bin/id -u" -eq 0 ]; then
		return true
	fi

	return false
}

以上是关于sh Bash:检查用户是否为root的主要内容,如果未能解决你的问题,请参考以下文章

shell脚本检测当前用户是否为超级管理员===checkRoot.sh

sh 检查Bash shell脚本中是否存在输入参数

sh 用于检查MySQL是否正在运行的简单bash脚本。

sh bash wget - 在下载之前检查url文件是否存在

sh check bash参数有一些字符串检查脚本参数是否包含某个字符串

sh 检查Jumpcloud用户是否为MFA