shell脚本读取文件主要介绍两种方式:
第一种:
#/bin/bash while read line do echo $line done < a.txt
第二种:
#/bin/bash cat a.txt | while read line do echo $line done