Skip to content

Instantly share code, notes, and snippets.

@optroodt
Created December 5, 2019 12:48
Show Gist options
  • Save optroodt/b230fa86f26f62e0a4a0a01ce143d01b to your computer and use it in GitHub Desktop.
Save optroodt/b230fa86f26f62e0a4a0a01ce143d01b to your computer and use it in GitHub Desktop.
Remove trailing whitespace with sed on os X
find . -iname "*.py" -exec sed -i '' -E 's/[ '$'\t'']+$//' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment