Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
657 views
in Technique[技术] by (71.8m points)

bash - escaping newlines in sed replacement string

Here are my attempts to replace a b character with a newline using sed while running bash

$> echo 'abc' | sed 's/b/
/'
anc

no, that's not it

$> echo 'abc' | sed 's/b/\n/'
a
c

no, that's not it either. The output I want is

a
c

HELP!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Looks like you are on BSD or Solaris. Try this:

[jaypal:~/Temp] echo 'abc' | sed 's/b/ 
> /'
a
c

Add a black slash and hit enter and complete your sed statement.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...