Skip to content

Instantly share code, notes, and snippets.

@invalidusrname
Last active April 3, 2019 20:29
Show Gist options
  • Save invalidusrname/ee92fb218275f7b2ee1e to your computer and use it in GitHub Desktop.
Save invalidusrname/ee92fb218275f7b2ee1e to your computer and use it in GitHub Desktop.
Remove trailing whitespace from ruby files
for f in $(git log -4 --name-only | grep ".rb" | sort | uniq); do perl -pi -e 's/ +$//' $f; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment