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

$ perl --version
This is perl, v5.10.1 (*) built for x86_64-linux-gnu-thread-multi

$ echo -e "foo
bar" > baz.txt
$ perl -p -e 's/foo
bar/FOO
BAR/m' baz.txt
foo
bar

How can I get this replacement to work?

See Question&Answers more detail:os

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

1 Answer

You can use the -0 switch to change the input separator:

perl -0777pe 's/foo
bar/FOO
BAR/' baz.txt

-0777 sets the separator to undef, -0 alone sets it to which might work for text files not containing the null byte.

Note that /m is needless as the regex does not contain ^ nor $.


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