-
Notifications
You must be signed in to change notification settings - Fork 0
/
lfe.txt
260 lines (159 loc) · 7.44 KB
/
lfe.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
lfe(1) lfe(1)
NAME
lfe - Lisp Flavoured Erlang (LFE) shell
SYNOPSIS
lfe 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 FUNCTIONS
These 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 in‐
formation 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 COMMANDS
These 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 vari‐
ables, functions an macros that have been set.
(run File)
Execute all the shell commands in File. All defined variables, func‐
tions and macros will be saved in the environment if there are no er‐
rors.
(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 MACROS
Functions 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 ENVIRONMENT
The shell maintains an environment of local function and macro defini‐
tions, 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 SHELL
After installing the best way is probably to start Erlang directly run‐
ning the LFE shell with:
lfe [flags]
From a normal Erlang shell the best way to start the shell is by call‐
ing:
17> lfe_shell:server().
Giving the user switch commands:
--> s lfe_shell
--> c
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:
· -h or --help - provides command line usage help
· -e or -eval - evaluates a given sexpr in a string
· -prompt - users may supply a value here to override the default lfe>
prompt; note that -prompt classic will set the prompt to the original
> and -prompt with no associated value will cause no prompt to be
displayed at all. These also work when node names are provided (with
either -sname or -name). Furthermore, users may override the default
formatting of node names in prompts by providing a prompt value con‐
taining the string ~node (which will be substituted with the actual
name of the node).
There can be multiple string expressions to be evaluated; each one must
be prefixed with an -e or -eval. String expressions are run in the LFE
repl so shell commands and functions are allowed. They are all run in
the same invocation of the repl so:
$ lfe -e "(set aaa 42)" -e "(set bbb 84)" -e "(pp (tuple aaa bbb))"
#(42 84)
If there are string expressions then the LFE repl will not be run.
RUNNING LFE SHELL SCRIPTS
The LFE shell can also be directly called to run LFE shell scripts
with:
lfe [flags] file [args]
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.
Note that if there are any string expressions to be evaluated then
these must come before the name of the script file and its arguments.
These expressions will be evaluated before the script and the script
will use the environment from the string expressions.
It is possible to run both string expressions and an LFE shell script
and they are then run in the same LFE repl.
SEE ALSO
lfescript(1), lfe_guide(7) lfe_doc(3)
AUTHORS
Robert Virding.
2008-2019 lfe(1)