Linux学习总结(六十八)文本编辑脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux学习总结(六十八)文本编辑脚本相关的知识,希望对你有一定的参考价值。

有时候我们要借助脚本来编辑文本,请看下面的题目。
题目要求:
在文本文档1.txt第五行(假设文件行数大于5)后面增加如下两行内容:
# This is a test file.
# Test insert line into this file.
习题分析:
方法一: 可以直接用sed -i 添加
方法二:依次按顺序打印前5行,然后打印要增加的行,再从文本第六行开始一直到结束依次打印剩余的行。可以把打印内容追加重定向到另一个文本,再强制重命名即可。
1 sed 直接实现
sed -i "5a # This is a test file. # Test insert line into this file." 1.txt
2 循环实现

#!/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.
# test insert line into this file." >> 2.txt
    else
                echo $line >> 2.txt
    fi
done
mv 2.txt 1.txt

以上是关于Linux学习总结(六十八)文本编辑脚本的主要内容,如果未能解决你的问题,请参考以下文章

Linux学习总结(六十五)tomcat启动脚本

Linux学习总结(六十)shell脚本4-函数及数组

Linux学习总结(六十七)rm命令限制脚本

Linux学习总结(六十四)expect脚本下

Linux学习总结(六十六)打印一串数字的脚本

Linux学习总结(六十二)shell脚本5-监控系统开发