Search and Replace over multiple files

T

Trans

Just an FYI, this little one-line can come it quite handy:

ruby -pi -w -e 'gsub!(/search/, "replace")' *.rb

Use it to seach through your ruby script files doing a global search
and replace. Be careful though. Make a mistake using it and you'll be
wanting a backup!

T.
 
A

Andrew Johnson

Just an FYI, this little one-line can come it quite handy:

ruby -pi -w -e 'gsub!(/search/, "replace")' *.rb

Use it to seach through your ruby script files doing a global search
and replace. Be careful though. Make a mistake using it and you'll be
wanting a backup!

Hence, specifying a backup extension is a good idea:

ruby -wpi.bak -e '...' xfiles

Now xfiles will first be backed up as xfiles.bak

andrew
 
W

William James

Trans said:
Just an FYI, this little one-line can come it quite handy:

ruby -pi -w -e 'gsub!(/search/, "replace")' *.rb

Use it to seach through your ruby script files doing a global search
and replace. Be careful though. Make a mistake using it and you'll be
wanting a backup!

T.

Bangless, with backup:

ruby -i.bak -pe 'gsub(/search/, "replace")' *.rb
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,764
Messages
2,569,564
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top