发布网友 发布时间:2022-04-22 10:23
共1个回答
热心网友 时间:2022-04-18 21:02
无论什么编程语言都离不开条件判断。SHELL也不例外。
大体的格式如下:
if list then
do something here
elif list then
do another thing here
else
do something else here
fi
一个例子:
#!/bin/sh
SYSTEM=`uname -s` # 获取操作系统类型,我本地是linux
if [ $SYSTEM = "Linux" ] ; then # 如果是linux话输出linux字符串
echo "Linux"