Erlang makes it possible to extend the Erlang shell with your own built-in functions using the special module user_default
. We can use this to add functions to the shell, and even add custom libraries to the code path for all Erlang shells.
- Start by creating a file called
.erlang
in your home directory. Any Erlang expression ending with a dot in this file will be executed when the Erlang shell starts - Create the directory
~/.erlang.d
:(The path can be any path you like, just remember to edit all paths in this instruction to match)$ mkdir ~/.erlang.d
- Create a file called
user_default.erl
in that directory - Compile it:
$ cd ~/.erlang.d $ erlc user_default.erl
- Add a file called
rebar.escript
in~/.erlang.d
- Edit your global
~/.config/rebar3/rebar.config
and add a shell script file directive with the full path to that escript (replace/path/to/home
with the actual path to your home folder):{shell, [{script_file, "/path/to/home/.erlang.d/rebar.escript"}]}.
The example user_default.erl
file in this Gist includes on_load
functionality to add any cloned libraries inside ~/.erlang.d
to the Erlang path. To for example enable Recon in every Erlang shell, you can just clone it and compile it:
$ cd ~/.erlang.d
$ git clone https://github.com/ferd/recond
Cloning into 'recon'...
remote: Enumerating objects: 1366, done.
remote: Counting objects: 100% (88/88), done.
remote: Compressing objects: 100% (70/70), done.
remote: Total 1366 (delta 15), reused 70 (delta 13), pack-reused 1278
Receiving objects: 100% (1366/1366), 1.11 MiB | 2.25 MiB/s, done.
Resolving deltas: 100% (771/771), done.
$ cd recon
$ rebar3 compile
===> Fetching rebar3_ex_doc v0.2.16
===> Analyzing applications...
===> Compiling rebar3_ex_doc
===> Verifying dependencies...
===> Analyzing applications...
===> Compiling recon
From this point on, Recon will be available in the Erlang code path for all Erlang shells.