Skip to content

Instantly share code, notes, and snippets.

@nigelbabu
Created August 6, 2012 03:24
Show Gist options
  • Save nigelbabu/3269611 to your computer and use it in GitHub Desktop.
Save nigelbabu/3269611 to your computer and use it in GitHub Desktop.
Replace a word in files matched with a grep
grep -rl 'myfolder' * | xargs -I{} perl -pi -e 's/foo/bar/' {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment