如何在使用sed的行之后插入换行符/换行符

时间:2013-06-28 10:52:20

标签: bash shell sed zsh

我花了一段时间才弄清楚如何做到这一点,所以发布以防其他人正在寻找相同的。

6 个答案:

答案 0 :(得分:27)

要在模式后添加换行符,您还可以说:

sed '/pattern/{G;}' filename

引用GNU sed manual

G
    Append a newline to the contents of the pattern space, and then append the contents of the hold space to that of the pattern space.

修改

顺便提一下,这恰好包含在sed one liners中:

 # insert a blank line below every line which matches "regex"
 sed '/regex/G'

答案 1 :(得分:8)

这个sed命令:

sed -i '' '/pid = run/ a\
\
' file.txt

找到以下行:pid = run

file.txt之前

; Note: the default prefix is /usr/local/var
; Default Value: none
;pid = run/php-fpm.pid

; Error log file

并在file.txt

中的该行之后添加一个换行符 在

之后

file.txt

; Note: the default prefix is /usr/local/var
; Default Value: none
;pid = run/php-fpm.pid


; Error log file

或者如果您想添加文字和换行符:

sed -i '/pid = run/ a\
new line of text\
' file.txt

之后

file.txt

; Note: the default prefix is /usr/local/var
; Default Value: none
;pid = run/php-fpm.pid
new line of text

; Error log file

答案 2 :(得分:2)

简单替换效果很好:

sed 's/pattern.*$/&\n/'

示例:

$ printf "Hi\nBye\n" | sed 's/H.*$/&\nJohn/'
Hi
John
Bye

要符合标准,请用反斜杠换行符替换\ n

$ printf "Hi\nBye\n" | sed 's/H.*$/&\
> John/'
Hi
John
Bye

答案 3 :(得分:2)

sed '/pattern/a\\r' file name 

它将在模式后添加一个返回,而g将用空行替换模式。

如果必须在文件末尾添加新行(空白),请使用:

sed '$a\\r' file name

答案 4 :(得分:0)

另一种可能性,例如如果您没有空的保留寄存器,则可能是:

sed '/pattern/{p;s/.*//}' file

说明:
     /pattern/{...} =如果找到符合模式的行,则应用命令序列,
     p =打印当前行,
     ; =命令之间的分隔符,
     s/.*// =用模式寄存器中的任何内容替换任何内容,
    然后自动将空模式寄存器打印为附加行)

答案 5 :(得分:0)

最简单的选择 -->

sed 'i\

'文件名