Forrest logo
back to context overview

erl

List of commands for erl:

  • erl:tldr:6ac52 erl: Connect to a running Erlang node.
    $ erl -remsh ${nodename}@${hostname} -sname ${custom_shortname} -hidden -setcookie ${cookie_of_remote_node}
    try on your machine
    explain this command
  • erl:tldr:c25f1 erl: Compile and run sequential Erlang program as a common script and then exit.
    $ erlc ${files} && erl -noshell '${mymodule:myfunction(arguments)}, init:stop().'
    try on your machine
    explain this command
  • erl:tldr:d37ca erl: Tell the Erlang shell to load modules from a directory.
    $ erl -pa ${directory_with_beam_files}
    try on your machine
    explain this command
back to context overview