linux里使用shell脚本读取文件的每一行内容并输出

 

mkdir test.txt 在当前目录新建文件test.txt

vim test.txt 点击i 进入vim编辑模式,内容如下:

点击Esc键退出vim编辑模式,shift + : 输入qw保存退出

 

hello world

hello shell

hello c++

 

实例1:采用while循环 ( < 表示输出重定向 )

#!bin/bash



while read line
do
  echo $line
done < test.txt            
bash read.sh 执行输出结果为:
实例2:采用while + 管道循环  ( | 表示管道过滤)
#!/bin/bash


cat test.txt | while read line
do
    echo $line
done
 
bash read.sh 执行输出结果为:

 

 

实例3:for循环

 

#!/bin/bash



for line in `cat  test.txt`
do
    echo $line
done
bash read.sh 执行输出结果为:

 

Logo

更多推荐