基于Shell中for循环的几个常用写法分享
更新时间:2018年06月20日 10:14:16 投稿:jingxian
今天小编就为大家分享一篇基于Shell中for循环的几个常用写法分享,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
第一类:数字性循环
for1-1.sh
#!/bin/bash for((i=1;i<=10;i++)); do echo $(expr $i \* 3 + 1); done
for1-2.sh
#!/bin/bash for i in $(seq 1 10) do echo $(expr $i \* 3 + 1); done
for1-3.sh
#!/bin/bash for i in {1..10} do echo $(expr $i \* 3 + 1); done
for1-4.sh
#!/bin/bash awk 'BEGIN{for(i=1; i<=10; i++) print i}'
第二类:字符性循环
for2-1.sh
#!/bin/bash for i in `ls`; do echo $i is file name\! ; done
for2-2.sh
#!/bin/bash for i in $* ; do echo $i is input chart\! ; done
for2-3.sh
#!/bin/bash for i in f1 f2 f3 ; do echo $i is appoint ; done
for2-4.sh
#!/bin/bash list="rootfs usr data data2" for i in $list; do echo $i is appoint ; done
第三类:路径查找
for3-1.sh
#!/bin/bash for file in /proc/*; do echo $file is file path \! ; done
for3-2.sh
#!/bin/bash for file in $(ls *.sh) do echo $file is file path \! ; done
以上这篇基于Shell中for循环的几个常用写法分享就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
linux shell循环:for、while、until用法详解
这篇文章主要介绍了linux shell下常用的循环for、while、until的用法,这也是脚本之家小编看到的比较详细的文章了,感兴趣的朋友可以参考一下,最好是在环境下自己手工打一份,不要复制2019-04-04
最新评论