Skip to content

Instantly share code, notes, and snippets.

@johnkodes
Created March 2, 2023 13:39
Show Gist options
  • Save johnkodes/4111d1afb18e607f319f365d61738f6d to your computer and use it in GitHub Desktop.
Save johnkodes/4111d1afb18e607f319f365d61738f6d to your computer and use it in GitHub Desktop.
Remove whitespace from folder
find . -not \( -name .git -prune \) -type f -print0 | LANG=C LC_CTYPE=C xargs -0 sed -i '' -E "s/[[:space:]]*$//"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment