逐行处理文本文件的Shell脚本
时间:2007-01-29 来源:mishuang
方法一:
#!/bin/bash
cat $1 | while read line
do
echo $line
done
b)调用方法
# read.sh read.sh
方法二:
a)程序
#!/bin/bash
while read line
do
echo $line
done
b)调用方法
# read.sh < read.sh
方法三:
a)程序
#!/bin/bash
exec 3<&0
exec < $1
while read line ; do
echo ${line}
done
exec 0<&3 3<&-
b)调用方法
# read.sh read.sh
相关阅读 更多 +