![]() |
![]()
| ![]() |
![]()
NAMElfe - Lisp Flavoured Erlang (LFE) shellSYNOPSISlfe is a simple LFE repl (read-eval-print loop) in which you can enter sexprs which then are evaluated and the value printed. You can also define local functions and macros as well as set variables. It can read commands either from the standard input or from a file.The LFE repl is implemented in the module lfe_shell. BUILT-IN SHELL FUNCTIONSThese are defined as normal functions and macros and can be called from anywhere in the shell. They can even be redefined. They can also be explicitly called (: lfe_shell ...).(c File [Options]) Compile and load an LFE file. Assumes default extension .lfe. (: c Command Arg ...) (c:Command Arg ...) All the commands in the standard Erlang shell can be reached in this way. (cd Dir) Change the working directory. (clear) Clear the REPL output. ([doc | describe] Mod) ([doc | describe] Mod:Mac) ([doc | describe] Mod:Fun/Arity) Print out documentation of a module/macro/function. (ec File [Options]) Compile and load an Erlang file. (ep Expr [Depth]) (epp Expr [Depth]) Print/prettyprint a value in Erlang form to either the specified depth or if no value is given the full depth. (flush) Flush any messages sent to the shell. (h) (help) Print usage info. (i [(list Pid ...)]) Print information about a list of pids. If no list is given then print information about currently running processes in the system. (l Module ...) Load modules. (ls) (ls dir) List files in a directory. If no directory is given then list files in the current directory. (m [Module ...]) Print out module information. If no modules are given then print information about all modules. (p Expr [Depth]) (pp Expr [Depth]) Print/prettyprint a value to either the specified depth or if no value is given the full depth. (pid x y z) Create a pid from x, y, z. (pwd) Print the current working directory. (q) Quit - shorthand for init:stop/0. (regs) Print information about the registered processes in the system. BUILT-IN SHELL COMMANDSThese are special forms which are only recognised at the top-level in shell input. The cannot be redefined.(reset-environment) Resets the environment to its initial state. This will clear all variables, functions an macros that have been set. (run File) Execute all the shell commands in File. All defined variables, functions and macros will be saved in the environment if there are no errors. (set Pattern Expr) (set Pattern (when Guard) Expr) Evaluate Expr and match the result with Pattern binding variables in it. These variables can then be used in the shell and also rebound in another set. (slurp File) Slurp in a source LFE file and makes all functions and macros defined in the file available in the shell. Only one file can be slurped at a time and slurping a new file basically does an unslurp first. (unslurp) Revert back to the state before the last slurp removing all function and macro definitions both in the slurped file and defined in the shell since then. SHELL FUNCTIONS AND MACROSFunctions and macros can be defined in the shell. These will only be local to the shell and cannot be called from modules. The forms are the standard forms for defining functions and macros.(defun Fun ...) Define a function in the shell. (defmacro Macro ...) Define a macro in the shell. BUILT-IN SHELL VARIABLES+, ++, +++The three previous expressions input. *, **, *** The values of the previous 3 expressions. - The current expression input. SHELL ENVIRONMENTThe shell maintains an environment of local function and macro definitions, and variable bindings. The environment can be accessed using the built-in shell variable $ENV. This can be useful when calling functions like macroexpand and macro-function which unless an explicit environment is given will only search the default environment.STARTING THE LFE SHELLAfter installing the best way is probably to start Erlang directly running the LFE shell with:
From a normal Erlang shell the best way to start the shell is by calling:
Giving the user switch commands:
will create a job running the LFE shell and connect to it. This also works when starting a remote shell. Flags that LFE recognizes include the following:
RUNNING LFE SHELL SCRIPTSThe LFE shell can also be directly called to run LFE shell scripts with:
This will start the shell, run a script with LFE shell commands and then terminate the shell. The following built-in variables are also bound: script-name The name of the script file as a string. script-args A list of the arguments to the script as strings. If no arguments have been given then this will be an empty list. SEE ALSOlfescript(1), lfe_guide(7) lfe_doc(3)AUTHORSRobert Virding.
|