shell下读取文件的方法
读文件的方法:
第一步: 将文件的内容通过管道(|)或重定向(<)的方式传给while
第二步: while中调用read将文件内容一行一行的读出来,并付值给read后跟随的变量。变量中就保存了当前行中的内容。
例如读取文件/tmp/test.txt
1)管道的方式
1cat /tmp/test.txt |while read LINE
2do
3 echo $LINE
4done
当然也可以将cat /tmp/test.txt 写成一些复杂一些的,比如:
1示例1:
2find /tmp -type f -name "*.txt" -exec cat |while read LINE
3do
4 echo $LINE
5done
可以将当前目录所有以 .txt 结尾的文件读出
1示例2:
2grep -r "test.txt" ./ | awk -F":" '{print $1}' | cat |while read LINE
3do
4 echo $LINE
5done
可以将含有 “test.txt” 字符串的所有文件打开并读取。示例没有实际测试,如果使用请先测试。。。。。:-)
2)重定向的方式
2.1 利用重定向符<
1while read LINE
2do
3 echo $LINE
4done < /sites/linuxpig.com.txt
2.2 利用文件描述符(0~9)和重定向符 <
1exec 3<&0
2exec 0</tmp/test.txt
3while read LINE
4do
5 echo $LINE
6done
7exec 0<&3
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/readfile/240.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.