summaryrefslogtreecommitdiffstats
path: root/scripts/whitespace-remove.sh
blob: 08857d5ae7c15b71a9828538b59b715af997ebe8 (plain)
1
2
3
4
5
6
#!/bin/sh -x

SRC_DIR=`cd ../.. ; pwd`

find $SRC_DIR/pki -not -path '.git' -name '*.java' \
    -exec sed -i 's/[[:blank:]]\+$//' {} \;