break:提前退出循环

continue:提前结束本轮循环

shell-while循环_shell while

加入continue后

shell-while循环_shell while_02

加入break

shell-while循环_shell while_03

判断路径是否存在

shell-while循环_shell while_04

加入break,则退出

shell-while循环_shell while_05

while第二种特殊用法

while read LINE;do

done < /path/to/somefile

shell-while循环_shell while_06

只显示一行

shell-while循环_shell while_07

对ID号小于505的号不做处理

shell-while循环_shell while_08


写一个脚本


1.判断一个指定的bash脚本是否有语法错误:如果有错误,则提醒用户键入Q或者q无视错误并退出,其它任何键可以通过vim打开这个指定的脚本。

2.如果用户通过vim打开编辑后保存退出时仍然有错误,则重复第1步中的内容:否则,就正常关闭退出。


shell-while循环_shell while_09