for 循环
#! /bin/bash
for i in 1 "test" 3; do #Each space separated statement is assigned to i
echo $i
done
其他命令可以生成循环语句。请参阅“使用 For 循环迭代数字”示例。
这输出:
1
test
3
#! /bin/bash
for i in 1 "test" 3; do #Each space separated statement is assigned to i
echo $i
done
其他命令可以生成循环语句。请参阅“使用 For 循环迭代数字”示例。
这输出:
1
test
3