mirror of
https://github.com/KittyKatt/screenFetch.git
synced 2026-01-08 05:53:59 -05:00
# https://stackoverflow.com/questions/149057/how-to-remove-trailing-whitespace-of-all-files-recursively export LC_CTYPE=C LANG=C find . -not \( -name .svn -prune -o -name .git -prune \) -type f -print0 | perl -0ne 'print if -T' | xargs -0 sed -Ei 's/[[:blank:]]+$//'