手机
当前位置:查字典教程网 >脚本专栏 >linuxshell >Shell脚本for循环语句简明教程
Shell脚本for循环语句简明教程
摘要:与其他编程语言类似,Shell支持for循环。for循环一般格式为:复制代码代码如下:for变量名in列表docommand1command...

与其他编程语言类似,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

【Shell脚本for循环语句简明教程】相关文章:

linux shell脚本基础知识学习

shell脚本编程之for语句、if语句使用介绍

shell脚本递归遍历目录及子目录的例子分享

Shell脚本获取进程的运行时间

Linux shell脚本中字符串连接的方法

Shell脚本数组操作小结

shell脚本命令行参数简介

Shell脚本if else语句小结

shell脚本学习与总结

Shell脚本case语句简明教程

精品推荐
分类导航