summaryrefslogtreecommitdiffstats
path: root/zaptrail
blob: dfe91bc805caea573dee5038401690fdb7fcd822 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/bash

if [ "" == "$*" ]; then
	echo "zaptrail: remove trailing white space"
	echo "Usage: zaptrail <file1> <file2> ...."
	exit 1
fi

sed -i -r -e 's/\s+$//' $*