vote up 7 vote down star
2

Preferably free tools if possible.

Also, the option of searching for multiple regular expressions and each replacing with different strings would be a bonus.

flag

73% accept rate

14 Answers

vote up 14 vote down check

Perl. Seriously, it makes sysadmin stuff so much easier. Here's an example:

perl -pi -e 's/something/somethingelse/g' *.log

link|flag
vote up 0 vote down

I have the luxury of Unix and Ubuntu; In both, I use gawk for anything that requires line-by-line search and replace, especially for line-by-line for substring(s). Recently, this was the fastest for processing 1100 changes against millions of lines in hundreds of files (one directory) On Ubuntu I am a fan of regexxer

 sudo apt-get install regexxer
link|flag
vote up 1 vote down

My personal favorite is PowerGrep by JGSoft. It interfaces with RegexBuddy which can help you to create and test the regular expression, automatically backs up all changes (and provides undo capabilities), provides the ability to parse multiple directories (with filename patterns), and even supports file formats such as Microsoft Word, Excel, and PDF.

PowerGrep Screenshot

link|flag
vote up 0 vote down

I've found the tool RxFind useful (free OSS).

link|flag
vote up 1 vote down

For find-and-replace on multiple files on Windows I found rxFind to be very helpful.

link|flag
vote up 10 vote down

sed is quick and easy:

sed -e "s/pattern/result/" <file list>

you can also join it with find:

find <other find args> -exec sed -e "s/pattern/result/" "{}" ";"
link|flag
I agree on the quick.... and it is easy only for a given value of easy. Anyways +1 ;) – Mario Ortegón Jun 12 at 21:17
vote up 0 vote down

Vim for the rescue (and president ;-) ). Try:

vim -c "argdo! s:foo:bar:gci" <list_of_files>

(I do love Vim's -c switch, it's magic. Or if you had already in Vim, and opened the files, e.g.:

vim <list_of_files>

Just issue:

:bufdo! s:foo:bar:gci

Of course sed and perl is capable as well. HTH.

link|flag
vote up 2 vote down

Emacs's directory editor has the `dired-do-query-replace-regexp' function to search for and replace a regexp over a set of marked files.

link|flag
vote up 3 vote down

Unsurprisingly, Perl does a fine job of handling this, in conjunction with a decent shell:

for file in @filelist ; do
  perl -p -i -e "s/pattern/result/g" $file
done

This has the same effect (but is more efficient, and without the race condition) as:

for file in @filelist ; do
  cat $file | sed "s/pattern/result/" > /tmp/newfile
  mv /tmp/newfile $file
done
link|flag
I also like to use "find -iname" with thatm to get a recursive search. – Osama ALASSIRY Oct 24 '08 at 8:08
vote up 0 vote down

jEdit's regex search&replace in files is pretty decent. Slightly overkill if you only use it for that, though. It also doesn't support the multi-expression-replace you asked for.

link|flag
vote up 1 vote down

For Mac OS X, TextWrangler does the job.

link|flag
Especially because it provides visual feedback and allows you to review the changes it made before saving them back to files. I prefer BBEdit, its bigger brother, though, for its larger amount of functionality. Isn't free like TextWrangler, though – Thomas Tempelmann Dec 17 '08 at 15:26
vote up 2 vote down

Textpad does a good job of it on Windows. And it's a very good editor as well.

link|flag
Couldn't agree more about TextPad being an excellent editor (my personal favourite). However, whilst it does search over multiple files (and very quickly at that) it doesn't do search and replace over multiple files. – Umber Ferrule Sep 21 '08 at 9:07
2  
Yes it does. What you have to do is right-click and select "Open All" in the search results. This will open all the found files. Then in the Replace dialog, click the "All Documents" radio button for where to do the replacing. After it finishes, click "Save All". – levik Sep 23 '08 at 13:52
vote up 1 vote down

I'd go for bash + find + sed.

link|flag
vote up 1 vote down

Under Windows, I used to like WinGrep

Under Ubuntu, I use Regexxer.

link|flag

Your Answer

Get an OpenID
or

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