标签:直接 强制 结束 总结 一个 sed 另一个 code The
有时候我们要借助脚本来编辑文本,请看下面的题目。sed -i "5a # This is a test file.\n# Test insert line into this file." 1.txt
#!/bin/bash
n=0
cat 1.txt |while read line
do
n=$[$n+1]
if [ $n -eq 5 ];then
echo $line >> 2.txt
echo -e "# this is a test file.\n# test insert line into this file." >> 2.txt
else
echo $line >> 2.txt
fi
done
\mv 2.txt 1.txt
标签:直接 强制 结束 总结 一个 sed 另一个 code The
原文地址:http://blog.51cto.com/12606610/2136297