pekko/scripts/remove_trailing_whitespace.sh
2009-02-16 13:53:10 +01:00

5 lines
159 B
Bash
Executable file

#!/bin/sh
echo "removing all trailing whitespace from all *.scala, *.html and *.xml files"
# find . -type f -name '*.scala' -exec sed -i 's/[ \t]*$//' {} \;