| shell_init_state/1 | Given an input state, returns an output state with pre-imported shell commands and sensible default prompts. |
| simple_shell/1 | A simple read-parse-eval loop. |
| start/0 | Starts the OTPCL shell preloaded with commands useful for general
shell-like usage (ls, cd, etc.). |
| start/1 | Starts the OTPCL shell with a user-provided custom state. |
shell_init_state(State0) -> any()
Given an input state, returns an output state with pre-imported shell commands and sensible default prompts.
simple_shell(State) -> any()
A simple read-parse-eval loop.
start() -> any()
Starts the OTPCL shell preloaded with commands useful for general
shell-like usage (ls, cd, etc.).
start(State) -> any()
Starts the OTPCL shell with a user-provided custom state. Useful for implementing customized shells (e.g. restricted command shells for embedding in other OTP applications).
Generated by EDoc