Skip to content

Instantly share code, notes, and snippets.

@syenchuk
Created April 1, 2016 14:33
Show Gist options
  • Select an option

  • Save syenchuk/dd07c1cfb5c964959989ea19946a3cb6 to your computer and use it in GitHub Desktop.

Select an option

Save syenchuk/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