linux教程for语句,Shell脚本for循环语句简明教程

与其他编程语言类似,shell支持for循环。

for循环一般格式为:

for 变量名 in 列表

do

command1

command2

...

commandn

done

当变量值在列表里,for循环即执行一次所有命令,使用变量名获取列表中的当前取值。命令可为任何有效的shell命令和语句。in列表可以包含替换、字符串和文件名。

in列表是可选的,如果不用它,for循环使用命令行的位置参数。

例如,顺序输出当前列表中的数字:

for loop in 1 2 3 4 5

do

echo "the value is: $loop"

done

输出:

the value is: 1

the value is: 2

the value is: 3

the value is: 4

the value is: 5

顺序输出字符串中的字符:

for str in 'this is a string'

do

echo $str

done

输出:

this is a string

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值