Skip to content

Instantly share code, notes, and snippets.

@claytantor
Created October 21, 2016 17:23
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 claytantor/aff4dce37fa48ceef17010d015127263 to your computer and use it in GitHub Desktop.
Save claytantor/aff4dce37fa48ceef17010d015127263 to your computer and use it in GitHub Desktop.
Recursively find and replace in files
# Recursively find and replace in files
find . -name "*.txt" -print0 | xargs -0 sed -i '' -e 's/foo/bar/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment