Created
February 13, 2012 18:15
-
-
Save camdez/1818775 to your computer and use it in GitHub Desktop.
whiteout.sh - Clean up the whitespace in a file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# whiteout.sh - Clean up the whitespace in a file | |
# | |
# Author: Cameron Desautels <camdez@gmail.com> | |
# Date: 2012-02-12 20:25:08 | |
if [ -z "$1" ] | |
then | |
echo "Usage: `basename $0` file [...]" 1>&2 | |
exit 1 | |
fi | |
sed -i '' 's/[[:space:]]*$//' $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment