Skip to content

Instantly share code, notes, and snippets.

@wizardjedi
Forked from nessamurmur/beam_decompile.erl
Created April 26, 2017 08:15
Show Gist options
  • Save wizardjedi/472ded355bf1a049857c2ba8989a66fe to your computer and use it in GitHub Desktop.
Save wizardjedi/472ded355bf1a049857c2ba8989a66fe to your computer and use it in GitHub Desktop.
#!/usr/bin/env escript
% -*- mode: erlang -*-
main([BeamFile]) ->
{ok,{_,[{abstract_code,{_,AC}}]}} = beam_lib:chunks(BeamFile,[abstract_code]),
io:fwrite("~s~n", [erl_prettypr:format(erl_syntax:form_list(AC))]).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment