How to I find and replace every occurrence of:
subdomainA.example.com
with
subdomainB.example.com
in every text file under the /home/www/ directory tree (recursive find/replace).
|
How to I find and replace every occurrence of:
with
in every text file under the | |||||
feedback
|
UPD.
| |||||||||||
feedback
|
Compared to other answers here, this is simpler than most and uses sed instead of perl, which is what the original question asked for. | |||||||
feedback
|
| |||||||||||||
feedback
|
find /home/www/ -type f will list all files in /home/www/ (and its subdirectories). The "-exec" flag tells find to run the following command on each file found. perl -i.bak -pe 's/subdomainA.example.com/subdomainB.example.com/g' {} + is the command run on the files (many at a time). The "{}" gets replaced by file names. The + at the end of the command tells find to build 1 command for many filenames. From the find man page: "The command line is built in much the same way that xargs builds its command lines." Thus it's possible to achieve your goal without using xargs -0, or -print0 . . | ||||
|
feedback
|
|
I just needed this and was not happy with the speed of the available examples. So I came up with my own:
Ack-grep is very efficient on finding relevant files. This command replaced ~145 000 files with a breeze whereas others took so long I couldn't wait until they finish. | |||
|
feedback
|
|
A simpler way is to use the below on the command line
| ||||
|
feedback
|
|
You may also: Search & replace with find & ed http://codesnippets.joyent.com/posts/show/2299 (which also features a test mode via -t flag) | |||
|
feedback
|
|
Try this:
| ||||
feedback
|