sh Bash If语句示例 - 来自http://www.thegeekstuff.com/2010/06/bash-if-statement-examples

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Bash If语句示例 - 来自http://www.thegeekstuff.com/2010/06/bash-if-statement-examples相关的知识,希望对你有一定的参考价值。

If [ conditional expression1 ]
then
	statement1
	statement2
	.
elif [ conditional expression2 ]
then
	statement3
	statement4
	.
.
.
else
	statement5
fi

以上是关于sh Bash If语句示例 - 来自http://www.thegeekstuff.com/2010/06/bash-if-statement-examples的主要内容,如果未能解决你的问题,请参考以下文章

sh Bash - 检查流程示例 - 来自http://stackoverflow.com/questions/7708715/check-if-program-is-running-with-ba

sh Bash - 时间戳功能示例 - 来自http://stackoverflow.com/questions/17066250/create-timestamp-variable-in-bash

sh Bash - 时间戳功能示例 - 来自http://stackoverflow.com/questions/17066250/create-timestamp-variable-in-bash

sh Bash - 样本If-Then - 来自http://tldp.org/LDP/abs/html/nestedifthen.html

sh Bash - 样本If-Then - 来自http://tldp.org/LDP/abs/html/nestedifthen.html

Linux bash/sh/shell编程中的if语句应该怎么写