LinuxCommandLibrary

iex

IEx is the interactive shell for Elixir.

TLDR

Start an interactive session

$ iex
copy


Start a session that remembers history
$ iex --erl "-kernel shell_history enabled"
copy


Start and load Mix project files
$ iex -S mix
copy

Copied to clipboard