Perl: Replace text in a file
If you need to replace some instances of a string in a file with something new you can use the following Perl one liner.
perl -pi -e "s/search/replace/g" /tmp/foo.txt
If you need to replace some instances of a string in a file with something new you can use the following Perl one liner.
perl -pi -e "s/search/replace/g" /tmp/foo.txt