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 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…