Skip to content

Instantly share code, notes, and snippets.

@matthieuprat
Last active January 20, 2016 09:04
Show Gist options
  • Select an option

  • Save matthieuprat/8c213bb819aced66f9dc to your computer and use it in GitHub Desktop.

Select an option

Save matthieuprat/8c213bb819aced66f9dc to your computer and use it in GitHub Desktop.
fix_eol() {
for f; do
sed -i '' -E 's/[[:space:]]*$//' "$f"
done
}
git grep -I --name-only ' $' -- :/ :!'*.slim' | while read f; do fix_eol "$f"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment