Skip to content

Instantly share code, notes, and snippets.

@atelic
Last active September 3, 2015 14:09
Show Gist options
  • Save atelic/93bf13de3f36c9cd2c5e to your computer and use it in GitHub Desktop.
Save atelic/93bf13de3f36c9cd2c5e to your computer and use it in GitHub Desktop.
Find and replace in all python files
find . -name '*.py' -print0 | xargs -0 perl -pie 's/foo/bar/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment