且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何在模式之前和行号之后使用sed插入行?

更新时间:2022-12-28 10:16:42

您可以编写sed脚本文件并使用:

You can either write a sed script file and use:

sed -f sed.script file1 ...

或者您可以使用(多个)-e 'command'选项:

Or you can use (multiple) -e 'command' options:

sed -e '/SysAdmin/i\
Linux Scripting' -e '1,$s/A/a/' file1 ...

如果您想在一行之后添加一些内容,则:

If you want to append something after a line, then:

sed -e '234a\
Text to insert after line 234' file1 ...