Files
Hans Ginzel 6314543381 Remove trailing whitespace characters
# 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:]]+$//'
2021-04-29 10:52:36 +02:00
..