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

Categories

I can't figure how to tell sed dot match new line:

echo -e "one two three" | sed 's/one.*two/one/m'

I expect to get:

one
three

instead I get original:

one
two
three

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
2.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

sed is line-based tool. I don't think these is an option.
You can use h/H(hold), g/G(get).

$ echo -e 'one
two
three' | sed -n '1h;1!H;${g;s/one.*two/one/p}'
one
three

Maybe you should try vim

:%s/one\_.*two/one/g

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...