Files
azeroth-core-android/apps/whitespace_remover/whitespace_remover.sh
2026-01-25 22:24:57 +01:00

4 lines
217 B
Bash

# 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