Skip to content

Instantly share code, notes, and snippets.

@alexpirine
Created April 1, 2016 14:33
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 alexpirine/dd07c1cfb5c964959989ea19946a3cb6 to your computer and use it in GitHub Desktop.
Save alexpirine/dd07c1cfb5c964959989ea19946a3cb6 to your computer and use it in GitHub Desktop.
Trim whitespace in all python files
#!/bin/bash
find . -not \( -name .svn -prune -o -name .hg -prune -o -name .git -prune \) -type f -name '*.py' -print0 | xargs -0 sed -i '' -E "s/[[:space:]]*$//"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment