摘要:
写在前面:案例、常用、归类、解释说明。(By Jim)使用if-then语句如果命令的退出状态是0(成功执行命令),将执行then后面的所有命令。如果命令的退出状态是0以外的其他值,那么then后面的命令将不会执行,bash shell会移动到脚本的下一条命令。#!/bin/bash# testing the if statementif datethen echo "it worked"fi(date返回0,执行then语句it worked)#!/bin/bash#testing multiple commands in the then sectiontestuser 阅读全文