首页 > 代码库 > shell-for循环
shell-for循环
sheel语言for循环格式
for var in item1 item2 ... itemN do command1 command2 ... commandN done
案例1
#!/bin/bash for v in 1 2 3 4 5 do echo "The value is: $v" done
输出
The value is: 1 The value is: 2 The value is: 3 The value is: 4 The value is: 5
案例2,与数组配合
#!/bin/bash datatime=(1 2 3 4 5) echo ${datatime[0]} for v in ${datatime[@]} do echo "The value is: $v" done
shell-for循环
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。