Skip to content

Instantly share code, notes, and snippets.

@angrycub
Created June 25, 2015 17:51
Show Gist options
  • Save angrycub/e975b8eae419ab8fb4bc to your computer and use it in GitHub Desktop.
Save angrycub/e975b8eae419ab8fb4bc to your computer and use it in GitHub Desktop.
Convert Binary Ring to Text
#!/usr/bin/env escript
%% -*- erlang -*-
%%! -smp enable -sname convert_binary_ring -mnesia debug verbose
main([RingFile, OutFile]) ->
try
{ok, Binary} = file:read_file(RingFile),
Ring = binary_to_term(Binary),
try
file:write_file(OutFile, io_lib:format("~p.~n", [Ring])),
io:format("Saved ~p to ~p.~n", [RingFile, OutFile])
catch
A:B ->
io:format("Exception ~p:~p~n",[A,B])
end
catch
_:_ ->
usage()
end;
main([RingFile]) ->
main([RingFile, lists:append(RingFile,".txt")]);
main(_) ->
usage().
usage() ->
io:format("usage: convert_binary_ring RingFile [OutputFile]\n"),
halt(1).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment