Search and replace string in file using Perl
Answer:
Besides using sed, Perl can also replace file in place with one-liner.
# perl -0777 -i -pe 's/abc/def/g' test.txt
Search and replace string in file using Perl
Answer:
Besides using sed, Perl can also replace file in place with one-liner.
# perl -0777 -i -pe 's/abc/def/g' test.txt
Post a Comment