日期:2014-05-16  浏览次数:20573 次

linux 输出某个文件的内容

#!/bin/sh

while read LINE
do
count=`expr $count + 1`
echo $LINE
done  < file.txt
echo $count