Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Erlang shell pretty print depth

Tags:

shell

erlang

The erlang shell truncates long terms, for example:

6> lists:seq(1,1000).
[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,
 23,24,25,26,27,28,29|...]

How do I make it not do that? Or at least increase the depth before it truncates the term. I know I could do something like...

io:format("~p~n",[lists:seq(1,1000)]).

... but I'd prefer to configure the shell to do what I want.

like image 610
goertzenator Avatar asked Mar 25 '11 15:03

goertzenator


2 Answers

An alternative to io:format("~p", [Term]) is the shell built in function rp(Term) which does exactly that.

like image 105
Adam Lindberg Avatar answered Nov 16 '22 01:11

Adam Lindberg


This post on extending the Erlang shell seems to show how to do what you want, but it's a bit more in-depth than just changing a line in a config file. Your best bet is probably to use the io:format("~p~n",[lists:seq(1,1000)]). approach.

like image 41
nmichaels Avatar answered Nov 16 '22 01:11

nmichaels