linux 一行一行的读取文件

#!/bin/bash
#reading data from a file
count=1
cat test1 | while read line
do
        echo "Line $count: $line"
        count=$[ $count + 1 ]
done
echo finished processing the file

~                                    
原文地址:https://www.cnblogs.com/rocky-AGE-24/p/6952214.html