shell脚本编程之循环语句学习笔记
本篇博客很简单,看一下shell编程使用到的循环语句,包括for循环,while循环,until循环,for后边跟一个变量,然后是一个集合,将集合中的东西赋给这个变量,每次循环执行,这跟java中的foreach很像,while循环和if使用同样的条件判断,满足条件执行语句,until和while相反,不满足条件执行语句,是不是很简单啊,下面看一下代码吧。
#!/bin/sh #for循环最基本的用法 forvarin"hello""xiaota""welcometowww.nhooo.com" do echo-n"$var" done echo #通配符扩展 forvarin$(ls*.sh) do echo"$var" done
#while循环,后边和if一样跟的都是条件 echo"pleaseinputsecret" readsecret while["$secret"!="xiaota"] do echo"tryagain" readsecret done
#until循环和while相反,条件为假才执行 echo"pleaseinputtext" readtext until["$text"="xiaota"] do echo"tryagain" readtext done
exit0