Skip to content

Instantly share code, notes, and snippets.

@robertoaloi
Created August 27, 2013 11:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robertoaloi/6352196 to your computer and use it in GitHub Desktop.
Save robertoaloi/6352196 to your computer and use it in GitHub Desktop.
Unescriptize Erlang files
#!/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