Feb 122007
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
Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.
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