summaryrefslogtreecommitdiffstats
path: root/tools/strip-trailing-whitespace.sh
blob: 4285725554dd0a85f98a26404ad4fb703dc05da1 (plain)
1
2
3
4
5
6
7
#!/bin/bash

# A script for removing trailing whitespace from all lines

for file in "$@"; do
	sed -i 's/[ \t]*$//' "$file"
done