Skip to content

Instantly share code, notes, and snippets.

@coffeencoke
Last active October 12, 2015 08:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coffeencoke/3998621 to your computer and use it in GitHub Desktop.
Save coffeencoke/3998621 to your computer and use it in GitHub Desktop.
vim find and replace
# Just do it
find . -type f -exec sed -i '' 's/from/to/g' {} \;
# So that you can confirm each instance before replacing
:set autowrite
:args **/*.rb
:argdo %s/from/to/gc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment