本文主要是介绍Loops循环在shell中的使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ENV:
[root@Fedora31 ~]# uname -r
5.5.15-200.fc31.x86_64
[root@Fedora31 ~]# cat /etc/redhat-release
Fedora release 31 (Thirty One)
循环的使用非常多,也是很有用的,不管是在编程中,还是在shell中,循环语句的使用可以节省大量的时间和空间。
循环的使用和C语言中的语法相差不大(基本可以说是一样)
这里不做实例操作,只是做为重要内容进行记录
For loop:
for var in list;do command; #use $vardonelist can be a string, or a sequence#the variable i will hold a character in the range a to z:for i in {a..z}; do actions; done;the for loop can also take the format of the for loop in C.for((i=o;i<10;i++)){commands;#use $i}
While loop:
while conditiondocommands;done
当condition为true时执行
Until loop:
x=0;until [ $x -eq 9 ]; # [ $x -eq 9 ] is the conditiondo let x++; echo $x;done
这篇关于Loops循环在shell中的使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!