Erlang shell pretty print depth

2019-03-15 16:42发布

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.

标签: shell erlang
2条回答
够拽才男人
2楼-- · 2019-03-15 17:22

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.

查看更多
做个烂人
3楼-- · 2019-03-15 17:28

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

查看更多
登录 后发表回答