Removed trailing whitespace

dev-ui
Piotr Dziwinski 2012-06-26 23:01:17 +02:00
parent cf312c0b87
commit c2a7375788
45 changed files with 245 additions and 238 deletions

View File

@ -0,0 +1,7 @@
#!/bin/bash
# A script for removing trailing whitespace from all lines
for file in "$@"; do
sed -i 's/[ \t]*$//' "$file"
done