How To Batch Search and Replace Multiple Files Using PERL

Using PERL, we can easily do a search and replace across multiple files.
perl -pi -w -e 's/SEARCH_FOR/REPLACE_WITH/g;' FILE_LIST
The following example will replace all occurrences of “hello” with “goodbye” inside files ending with .txt:
1 |
perl -pi -w -e 's/hello/goodbye/g;' *.txt |
To handle special characters, use the hex value. For example, to convert MS web files that use control characters:
perl -pi -w -e “s/\x92/’/g;” *.htm
perl -pi -w -e “s/\x96/-/g;” *.htm
perl -pi -w -e “s/\xA9/©/g;” *.htm
Works on a single file only:
1 |
perl -pi -w -e '!$x && s/hello/goodbye/ && ($x=1);' file.txt |
Leave Your Comment
All fields marked with "*" are required.