mxwcore-wotlk/apps/whitespace_remover/whitespace_remover.sh

4 lines
217 B
Bash
Raw Permalink Normal View History

2023-11-07 05:04:30 -05:00
# Change '*.cpp' and '*.h' to the extension you want to remove whitespaces in.
find -name '*.cpp' -print0 | xargs -r0 sed -e 's/[[:blank:]]\+$//' -i
find -name '*.h' -print0 | xargs -r0 sed -e 's/[[:blank:]]\+$//' -i