#!/bin/bash# while 循环i=0;while [ $i -lt 10 ];do ((i++));doneecho $i;
# read -p "Please input number:"Please input number:10
root@Ubuntu:/home/shell# read -p "Please input number:" inputPlease input number:100root@Ubuntu:/home/shell# echo $input100
while 读取文件信息,这件事for就不好处理了。
#!/bin/bash# while read line 读取文件信息read -p "请输入文件地址:" inputif [ ! -f $input ];then echo "文件不存在" exitfi# 读取文件内容while read linedo echo $linedone < $input