第四章 控制流结构
1.if语句 1if 条件1 2then 3 命令1 4elif 条件2 5then 6 命令2 7else 8 命令3 9fi 10------------------ 11if 条件 12then 命令 13fi 14eg: 15#!/bin/bash 16#if test 17#this is a comment line 18if [ "10" -lt "12" ];then 19#yes 10 is less than 12 20echo "yes,10 is less than 12" 21else 22echo "no" 23fi 注意:if语句必须以fi终止。”10″ 前一个空格,“12”后也有一个空格。 这个条件都是通过test命令来指定。条件表达为test exp……