Created
August 27, 2013 11:02
-
-
Save robertoaloi/6352196 to your computer and use it in GitHub Desktop.
Unescriptize Erlang files
This file contains hidden or 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/sh | |
tail -n +2 $1 > $1.tmp | |
unzip -d $1.unescriptized $1.tmp | |
rm $1.tmp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment