Skip to content

Instantly share code, notes, and snippets.

@jmg
Created January 2, 2012 01:09
Show Gist options
  • Save jmg/1548876 to your computer and use it in GitHub Desktop.
Save jmg/1548876 to your computer and use it in GitHub Desktop.
Remove Trailing WhiteSpaces from the current dir recursively
find . -not -path '.git' -iname '*.py' -type f -exec sed -i 's/ *$//' '{}' ';'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment