导读 | 在计算机科学中,Shell俗称壳(用来区别于核),是指”为使用者提供操作界面”的软件(命令解析器)。它类似于DOS下的command.com和后来的cmd.exe。它接收用户命令,然后调用相应的应用程序。同时它又是一种程序设计语言。 |
假设读取的文件为当期目录下的 test.txt 文件,内容如下:
Google Runoob Taobao
实例 1
#!/bin/bash while read line do echo $line done < test.txt
执行输出结果为:
Google Runoob Taobao
实例 2
#!/bin/bash cat test.txt | while read line do echo $line done
执行输出结果为:
Google Runoob Taobao
实例 3
for line in `cat test.txt` do echo $line done
执行输出结果为:
Google Runoob Taobao
for 逐行读和 while 逐行读是有区别的,如:
$ cat test.txt
Runoob
Taobao
$ cat test.txt | while read line; do echo $line; done
Runoob
Taobao
$ for line in $(<test.txt); do echo $line; done
Runoob
Taobao
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/123443.html