美文网首页
sed命令使用(3)

sed命令使用(3)

作者: 冰舞one | 来源:发表于2018-12-09 09:13 被阅读0次

    1、sed 在文件指定行插入新的内容 用参数:i

    root@localhost scripts]# sed '1i sedadd' b.log #在第一行添加

    sedadd

    00

    01

    [root@localhost scripts]# sed '2i sedadd' b.log#第二行添加

    00

    sedadd

    01

    2、sed 在文件里指定行的后添加内容参数:a

    root@localhost scripts]# sed '2asedadd_a' b.log

    00

    01

    sedadd_a

    root@localhost scripts]#

    [root@localhost scripts]# sed '$a sedadd_a' b.log #在内容的结尾添加一行新的内容

    00

    01

    02

    sedadd_a

    [root@localhost scripts]#

    相关文章

      网友评论

          本文标题:sed命令使用(3)

          本文链接:https://www.haomeiwen.com/subject/gyzqhqtx.html