In Erlang/OTP-20 and higher
Since Erlang/OTP-20rc2, Shell history is supported out of the box (although initially disabled by default) through a port of this library to the Erlang/OTP code base. Enable the shell in these versions by setting the shell_history
kernel environment variable to enabled with export ERL_AFLAGS="-kernel shell_history enabled"
added to your environment variables (see Configuration Options to see more options).
-- https://github.com/ferd/erlang-history
Trouble shooting
The history seems to be not updated (not written to the file)?
It seems that the process that is writing the history to the file does it asynchronously and it needs some time to do it before the IEx shell is closed. You need to wait a bit before you exit the shell (e.g. press <ctrl+>
).
Pre Erlang/OTP-20:
I have found 2 ways to do it.
erlang-history (eh) is a tiny pair of files that can be used to patch an Erlang-OTP system to add support for history in the Erlang
shell.
The history supported is the one available through up/down arrows on
the keyboard.
Installation in Ubuntu Linux:
sudo su
cd /usr/local/src
git clone https://github.com/ferd/erlang-history.git
cd erlang-history
make install
Now every now started Erlang based REPL (and that is IEx) should use erlang-history
.
As an alternative you can try a more generic REPL enhancer/fixer rlwrap which is a "readline wrapper":
...a small utility that uses the GNU readline library to allow the
editing of keyboard input for any command.
rlwrap -a -A iex -S mix
(In case you are on Ubuntu Linux use: sudo apt-get install rlwrap
)
It let's you add a lot more features to the REPL like e.g. the pipeto filter rlwrap -a -z pipeto iex
that lets you pipe things to shell commands - very useful to read documentation i.e.: iex> h Stream | less
(more)
Know downsides:
- It breaks code completion (i.e. tab completion) in IEx
Why is this very useful feature - command history - not already included in Elixir/Erlang?
When using asdf
see this.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…