mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

- Replace "al" -> "del", "alla" -> "della", etc. in command paths - Replace all instances of "cartella" with "directory" - Update contributing-guides/translation-templates/common-arguments.md to reflect these changes Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Marco Bonelli <marco@mebeim.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
16 lines
548 B
Markdown
16 lines
548 B
Markdown
# erl
|
|
|
|
> Esegui e gestisci programmi nel linguaggio di programmazione Erlang.
|
|
> Maggiori informazioni: <https://www.erlang.org>.
|
|
|
|
- Compila ed esegui un programma Erlang sequenziale come un comune script e poi esci:
|
|
|
|
`erlc {{file}} && erl -noshell '{{modulo:funzione(argomenti)}}, init:stop().'`
|
|
|
|
- Connetti ad un nodo Erlang in esecuzione:
|
|
|
|
`erl -remsh {{nome_nodo}}@{{hostname}} -sname {{soprannome}} -hidden -setcookie {{cookie_nodo_remoto}}`
|
|
|
|
- Fai caricare alla shell Erlang dei moduli da una directory:
|
|
|
|
`erl -pa {{directory_con_file_beam}}`
|