Skip to content

Instantly share code, notes, and snippets.

@LeonBlade
Created October 11, 2011 12:00
Show Gist options
  • Save LeonBlade/1277901 to your computer and use it in GitHub Desktop.
Save LeonBlade/1277901 to your computer and use it in GitHub Desktop.
Compresses Source Files of Whitespace
#!/bin/sh
for i in $@
do
cat $i | tr '\n' ' ' | sed 's/[[:blank:]]//g' > $i
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment