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).

link|improve this question
4  
Tip: Don't do the below in an svn checkout tree... it will overwrite magic .svn folder files. – J. Polfer Nov 8 '10 at 19:42
feedback

8 Answers

cd /home/www

find . -type f -print0 | xargs -0 sed -i 's/subdomainA.example.com/subdomainB.example.com/g'

UPD.

-print0 (GNU find only) tells find to use the null character (\0) instead of whitespace as the output delimiter between pathnames found. This is a safer option if you files can contain blanks or other special character. It is recommended to use the -print0 argument to find if you use -exec command or xargs (the -0 argument is needed in xargs.).

link|improve this answer
5  
You should have -print0 and -0 just in case. – Dennis Williamson Oct 17 '09 at 21:42
2Dennis: thanks, added. – Nikita Fedyashev Oct 17 '09 at 22:04
You've added -0, but not -print0. – Philipp Oct 18 '09 at 8:17
2Philipp: OK, this was new for me. Some explanation of this 2 parameters was added. – Nikita Fedyashev Oct 18 '09 at 17:45
feedback
find /home/www/ -type f -exec \
    sed -i 's/subdomainA\.example\.com/subdomainB.example.com/g' {} +

Compared to other answers here, this is simpler than most and uses sed instead of perl, which is what the original question asked for.

link|improve this answer
+1 for most efficient. – Dan Carley Oct 18 '09 at 19:48
1  
Note that if you're using BSD sed (including on Mac OS X) you'll need to give an explicit empty string arg to sed's -i option. ie: sed -i '' 's/original/replacement/g' – Nathan Craike Mar 23 at 1:29
feedback
cd /home/www && find . -type f -print0 |
  xargs -0 perl -i.bak -pe 's/subdomainA\.example\.com/subdomainB.example.com/g'
link|improve this answer
maybe put backslashes before the dots in the first half of the perl s/// substituion, but it's not likely to matter. – Ry4an Oct 17 '09 at 21:15
+1 for the print0 – roe Oct 17 '09 at 21:18
I'm curious, is there a reason to use -print0 and xargs instead of -exec or -execdir? – Philipp Oct 18 '09 at 8:26
There is: from "man find": The specified command is run once for each matched file. That is, if there are 2000 files in /home/www, then 'find ... -exec ...' will result in 2000 invocations of perl; whereas 'find ... | xargs ...' will only invoke perl once or twice (assuming ARG_MAX of about 32K and average file name length of 20). – Employed Russian Oct 18 '09 at 15:54
1  
On which platform? The xargs solution is portable, the "magic" invocations of "find ... -exec" which do not invoke a subprocess for every file found are not. – Employed Russian Oct 18 '09 at 20:47
show 2 more comments
feedback
find /home/www/ -type f -exec perl -i.bak -pe 's/subdomainA\.example\.com/subdomainB.example.com/g' {} +

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 . .

link|improve this answer
feedback

I just needed this and was not happy with the speed of the available examples. So I came up with my own:

cd /var/www && ack-grep -l --print0 subdomainA.example.com | xargs -0 perl -i.bak -pe 's/subdomainA\.example\.com/subdomainB.example.com/g'

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.

link|improve this answer
feedback

A simpler way is to use the below on the command line

find /home/www/ -type f|xargs perl -pi -e 's/subdomainA\.example\.com/subdomainB.example.com/g' 
link|improve this answer
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)

link|improve this answer
feedback

Try this:

sed -i 's/subdomainA/subdomainB/g' `grep -ril 'subdomainA' *`
link|improve this answer
Hi @RikHic, nice tip - was thinking about something like this; unfortunately that formatting above didn't quite turn out right :) So I'll try with a pre tag (doesn't work) - so with escaping backticks then: sed -i 's/subdomainA/subdomainB/g' ` grep -ril 'subdomainA' /home/www/* ` - this still doesn't look all too good, but should survive copypaste :) Cheers! – sdaau Mar 5 '11 at 0:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.