课程章节: 第2章 shell编程基础:2-13 Shell中的循环语句(二)(课程链接:https://coding.imooc.com/lesson/549.html#mid=50189)
主讲老师: 沈奇才
课程内容:shell编程实战与Linux运维基础--初始shell编程
课程收获:
while循环格式:
while 判断语句 ##if 判断 条件成立执行循环体
do ##判断语句成功 则执行do,失败了就跳出循环
执行语句
done
例1:求1+2+3+4+...+100的值
sum=0
i=1
while [ $i -le 100 ]
do
let "sum += $i"
let "i++"
done
echo "计算结果:$sum"
遍历文件内容:read line
写法一、
while read line
do
echo "本行内容:$line"
done < test.txt
还可以按需要的格式自定义(前提是知道要读去的文件的内容和格式):
while read ch en
do
echo "本行中文内容:$ch,本行中文内容:$en"
done < test.txt
写法二、
cat test.txt|while read line
do
echo "本行内容:$line"
done
until 循环:条件成立才会跳出循环
语法:
until 条件判断
do
执行语句
done
例1:求1++...+100的值:
sum=0
i=0
until [ $i -gt 100 ] ###大于100
do
let "sum += $i"
let "i++"
done
echo "until计算结果:$sum"
例2:用until遍历文件内容:
until ! read line ###取反,知道读不到任何内容的时候
do
echo "本行内容:$line"
done < test.txt