Skip to content

Instantly share code, notes, and snippets.

@mvasilkov
Last active December 27, 2015 04:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mvasilkov/7264439 to your computer and use it in GitHub Desktop.
Save mvasilkov/7264439 to your computer and use it in GitHub Desktop.
RTS: remove trailing spaces
#!/bin/bash
find . -not \( -name CVS -prune -or -name .git -prune \) -type f -print0 \
|xargs -0 sed -Ei '' 's/[[:space:]]{1,}$//'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment