首页 > 代码库 > shell读文件的两种方法

shell读文件的两种方法

[root@tzyx-test4 local]# cat read_line.sh 
#!/bin/bash
for i in `cat file.txt`
do
    echo $i
done
echo 
while read line
do
    echo $line
done < file.txt


本文出自 “yht的运维笔记” 博客,请务必保留此出处http://yht1990.blog.51cto.com/9014030/1911748

shell读文件的两种方法