Recursively Find and Replace a String in All Files

| posted in: nerdliness 


Using an editor it is very easy to find and replace all occurrences of a string within the file you are editing. Some editors even make it relatively easy to find and replace a string in all files within a project or set of files. However when the number of files grows to dozens or hundreds or even thousands, using an editor may not be the most efficient solution.

It is very simple to accomplish the same find and replace on the command line using the Unix find command coupled with the -exec option.

$ cd /path/to/directory/containing/files
$ find . -type f -exec perl -pi -e 's/source/target/g' {} \;

A variation on this command would be

$ find . -type f -exec sed -i 's/source/target/g' {} \;

You could even use xargs for the command.

$ find . -type f | xargs perl -pi -e 's/source/target/g'

If you want to see a list of the files containing either the source or target string, you can use this find command.

$ find . -exec grep -l "source" {} \;

Read the friendly man page for find and grep for more information.

Author's profile picture

Mark H. Nichols

I am a husband, cellist, code prole, nerd, technologist, and all around good guy living and working in fly-over country. You should follow me on Twitter.