gpt4 book ai didi

bash - 启动 Erlang shell/节点时如何运行自定义函数? (即 `.erl` 文件中的函数)

转载 作者:行者123 更新时间:2023-11-29 08:56:21 25 4
gpt4 key购买 nike

我可以通过命令行或 bash 脚本启动 Erlang 文件:

exec erl file.erl

但是,我似乎无法找到如何在这个文件中直接启动一个函数。

例如

exec erl file.erl -f function()

任何建议表示赞赏...

最佳答案

你可能想要的是 erl -s module_name function_name

请注意,您永远不会像示例中那样在 erl 命令中指定 erlang 文件。 Erlang VM 加载代码路径中的所有模块。这包括本地目录。

来自 http://www.erlang.org/doc/man/erl.html :

-run Mod [Func [Arg1, Arg2, ...]] (init flag) Makes init call the specified function. Func defaults to start. If no arguments are provided, the function is assumed to be of arity 0. Otherwise it is assumed to be of arity 1, taking the list [Arg1,Arg2,...] as argument. All arguments are passed as strings. See init(3).

-s Mod [Func [Arg1, Arg2, ...]] (init flag) Makes init call the specified function. Func defaults to start. If no arguments are provided, the function is assumed to be of arity 0. Otherwise it is assumed to be of arity 1, taking the list [Arg1,Arg2,...] as argument. All arguments are passed as atoms. See init(3).

关于bash - 启动 Erlang shell/节点时如何运行自定义函数? (即 `.erl` 文件中的函数),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4292120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com