AI智能
改变未来

shell脚本实战-while循环语句


前言

上文我们讨论了for循环的使用,在有限循环里,我们使用for循环是很方便的一件事情,今天我们来探讨下while循环

while循环语句的语法分析

语法格式一:

while [条件]do操作done

语法格式二:

while read linedo操作done < file

通过read命令每次读取一行文件,文件内容有多少行,while循环多少次

注意:只有表达式为真,do和done之间的语句才会执行,表达式为假时,结束循环(即条件成立就一直执行循环)

例如:

while true ;doecho \'helloword\'done

while 的使用案例

1. 循环输出1-10的数字

#!/bin/bashnum=1while [ $num -le 10 ]doecho $numnum=$(( $num + 1 ))done

2. 使用while读文件并打印文件内容

用法一:

while read linedoecho $linedone <./a.txt

用法二:

cat ./a.txt|while read linedoecho $linedone

for实现的读取文件并着行打印

#!/bin/bashcontent=$(cat ./a.txt)for i in $contentdoecho $idone

3. 输出两数相乘的效果(如下图)

此处感谢 @一只小小白丶 的建议,因为大多数人看到等号就会想到两边相等,这符合我们的教育习惯。

如果要实现图中效果可以按照如下方式做:

#!/bin/bashnum=1while [ $num -lt 10 ]dosum=$(( $num * $num))echo \"$num * $num = $num\"((num++))done

当然大多数人习惯了让等式两边必须相等,不相等看上去别扭,这也是义务教育的结果,也可以稍微改一下:

#!/bin/bashnum=1while [ $num -lt 10 ]dosum=$(( $num * $num))echo \"$num * $num = $sum\"((num++))done

这样输出的结果符合大多数人的数学习惯:

创建指定文件里的用户

指定文件 name.txt 里面包含 zhangsan lisi wangwu

name.txt 如下:

[root@ecs-c13b ~]# cat name.txtzhangsanlisiwangwu

从name.txt里面遍历用户名并创建用户

#!/bin/bashfor name in `cat /root/name.txt`#for name in $(cat /root/a.txt)doid $name &> /dev/nullif [ $? -ne 0 ];thenuseradd $nameecho \"123456\" |passwd --stdin $name &> /dev/nullecho \"user $name created\"elseecho \"user $name is exist\"fidone

总结

到目前为止,for-while-if-case,这四个常用的控制语句我们都已经探讨过了,接下来就是大量练习和综合应用的时候,操练起来把。

到此这篇关于shell脚本实战-while循环语句的文章就介绍到这了,更多相关shell -while循环内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:

  • 监控MySQL主从状态的shell脚本
  • shell脚本使用两个横杠接收外部参数的方法
  • 使用Shell脚本如何启动/停止Java的jar程序
  • Shell中使用grep、sed正则提取和替换字符串
  • Shell eval通过变量获取环境变量的方法实现
  • shell脚本–sed的用法详解
  • linux shell中 if else以及大于、小于、等于逻辑表达式介绍
  • Linux中执行shell脚本的4种方法总结
  • 一个不错的shell 脚本教程 入门级
  • Shell字符串比较相等、不相等方法小结
  • python中执行shell命令的几个方法小结
  • 分享一个可以通过命令简写执行对应命令的Shell脚本
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » shell脚本实战-while循环语句