Bash for循环写法的总结
Posted IT求职咨询
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Bash for循环写法的总结相关的知识,希望对你有一定的参考价值。
关于shell中的for循环用法很多,一直想总结一下:
1、 for((i=1;i<=10;i++));do echo $(expr $i \* 4);done
2、在shell中常用的是 for i in $(seq 10)
3、for i in `ls`
4、for i in ${arr[@]}
5、for i in $* ; do
6、for File in /proc/sys/net/ipv4/conf/*/accept_redirects; do
7、for i in f1 f2 f3 ;do
8、for i in *.txt
9、for i in $(ls *.txt)
for in语句与` `和$( )合用,利用` `或$( )的将多行合为一行的缺陷,实际是合为一个字符串数组
10、LIST="rootfs usr data data2"
for d in $LIST; do
用for in语句自动对字符串按空格遍历的特性,对多个目录遍历
11、for i in {1..10}
12、for i in stringchar {1..10}
13、awk 'BEGIN{for(i=1; i<=10; i++) print i}'
注意:AWK中的for循环写法和C语言一样的
以上是关于Bash for循环写法的总结的主要内容,如果未能解决你的问题,请参考以下文章