HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

iex — IEx is the interactive shell for Elixir. More information: <https://manned.org/iex>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
theshellcommandiexcliinteractivefor

Problem

How to use the iex command: IEx is the interactive shell for Elixir. More information: <https://manned.org/iex>.

Solution

iex — IEx is the interactive shell for Elixir. More information: <https://manned.org/iex>.

Start an interactive session:
iex


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


Start and load Mix project files:
iex -S mix

Code Snippets

Start an interactive session

iex

Start a session that remembers history

iex --erl "-kernel shell_history enabled"

Start and load Mix project files

iex -S mix

Context

tldr-pages: common/iex

Revisions (0)

No revisions yet.