Skip to content

Instantly share code, notes, and snippets.

@dchandekstark
Last active August 29, 2015 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dchandekstark/c702a50a6c076bcc2500 to your computer and use it in GitHub Desktop.
Save dchandekstark/c702a50a6c076bcc2500 to your computer and use it in GitHub Desktop.
Delete trailing whitespace
#!/bin/sh
TYPES="*.rb *.css *.js *.rake"
git ls-files ${TYPES} | xargs sed -E -i "" "s/[[:space:]]+$//g"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment