SHELL 读取文件的每一行内容并输出

春日樱亭

SHELL 读取文件的每一行内容并输出

分类 编程技术

假设读取的文件为当期目录下的 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
Google
Runoob
Taobao

$ cat test.txt | while read line; do echo $line; done
Google
Runoob
Taobao


$ for line in $(<test.txt); do echo $line; done
Google
Runoob
Taobao
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码