如何在启动 Erlang shell/节点时运行自定义函数? (即“.erl”文件中的函数)
我可以通过命令行或 bash 脚本启动 Erlang 文件:
exec erl file.erl
但是,我似乎无法找出如何直接启动此文件中的函数。
例如
exec erl file.erl -f function()
任何建议表示赞赏...
I can start an Erlang file either via the command line or bash script:
exec erl file.erl
But, I cannot seem to find out how to directly start a function within this file.
e.g.
exec erl file.erl -f function()
Any suggestions appreciated...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想要的是 erl -s module_name function_name
请注意,您永远不会像在示例中那样在 erl 命令中指定 erlang 文件。 Erlang VM 加载代码路径中的所有模块。这包括本地目录。
来自 http://www.erlang.org/doc/man/erl.html:
what you probably want is
erl -s module_name function_name
Note that you never specify the erlang file in the erl command like you did there in your example. The Erlang VM loads all modules in the codepath. That includes local directory.
From http://www.erlang.org/doc/man/erl.html:
erl
手册页][1] 显示了所有命令行选项,但 [
init(3)` 似乎有示例,有时还有更好的描述。 这篇文章也有一些很好的例子。此外,以下选项并不相互排斥。
-run
、-s
和-eval
开关可以混合使用。选项 1:
erl -run
或erl -s
erl
手册页 描述了-s
和-run
开关(文本相同),但示例位于
init(3)
(参见下面的块引用)。警告:
被调用的模块必须已经编译,否则 Erlang 运行时将在 init 时崩溃,产生一条神秘的错误消息(表明该函数未定义)。
选项 2:
erl -eval
如上一节所述,必须编译该模块才能与
-run
或-s
一起使用,因此,要么先调用erlc
,要么添加-eval
。假设 amod.erl 与执行 erl 的文件夹位于同一文件夹中,这将显示 Erlang shell 提示符。请参阅
-noshell
(erl
手册页< /a>) 如果只需要启动 Erlang 运行时。来自
init(3)
:The
erl
man page][1] shows all the command line options, but [
init(3)` seems to have the examples, and sometimes better descriptions. This post has some good examples as well.Also, the options below are not mutually exclusive. The
-run
,-s
, and-eval
switches can be mixed.Option 1:
erl -run
orerl -s
The
erl
man page describes the-s
and-run
switches (thetexts are the same), but the examples are in
init(3)
(see blockquote below).Caveat:
The called module has to be compiled already, otherwise the Erlang runtime will just crash on init, producing a cryptic error message (that points to the fact that the function is undefined).
Option 2:
erl -eval
As mentioned in the section above, the module has to be compiled to be used with
-run
or-s
, so either callerlc
before, or add-eval
to the mix. Assumingamod.erl
is in the same folder whereerl
is executedThis will drop to the Erlang shell prompt. See
-noshell
(erl
man page) if only the Erlang runtime needs to be started up.From
init(3)
: