shell与其他语言一样也支持for.while循环 for循环的一般格式如下: #!/bin/sh for 变量 in 列表 do command command command ......... command n done 列表是一组值(数字.字符串等)组成的序列,每个值通过空格分隔.每循环一次,就将列表中的下一个值赋给变量.列表也可以是一个文件:in 列表是可选的,如果不用它,for 循环使用命令行的位置参数. #!/bin/sh do echo "line is $line"…