timestamper/clean_trailing_whitespace.sh

10 lines
107 B
Bash
Raw Normal View History

#!/bin/bash
perl -pi -e 's/[\t\r\f ]+$//g' $@
for file in $@
do
rm "$file.bak"
echo "$file done!"
done