sh 主机操作系统满足检查bash脚本的要求

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 主机操作系统满足检查bash脚本的要求相关的知识,希望对你有一定的参考价值。

# required utilities
required=(
	grep
	awk
	curl
	jq
)

missing=()

for utility in "${required[@]}"
do
	if ! type "${utility}" >/dev/null 2>&1
	then
		missing+=("${utility}")
	fi
done

if ((${#missing[@]}))
then
	cat <<-EOM
		This script requires the following utilities, which could not be found.  Please install them and try again:
    
		$(IFS=$'\n'; echo "${missing[*]}")
    
	EOM
	exit 1
fi

以上是关于sh 主机操作系统满足检查bash脚本的要求的主要内容,如果未能解决你的问题,请参考以下文章

sh Nagios的Bash脚本检查Docker容器的状态

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

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

sh 用于检查当前git branch =“x”的bash脚本

sh 运行静态检查并在githooks上构建。带有进度显示的Bash脚本

编写脚本 systeminfo.sh,显示当前主机系统信息,包括主机名,IPv4地址, 操作系统版本