语法格式 if command;then commands fi 其中的command包含如下: shell command 任何shell命令,如果shell命令返回0,代表true,否则,代表false.并且多个command可以同时作为if的判断条件,即可以写为: if command1;command2;command3;then commands fi 此时如果command3返回的结果是0,则运行commands,否则不运行,虽然command1和command2也会运行,但是它们运…