使用 unix 批处理自动化 Erlang shell 节点
我可以从批处理文件运行许多 erlang 节点。但是,我可以将一些参数传递给 erl 使其执行一些命令吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我可以从批处理文件运行许多 erlang 节点。但是,我可以将一些参数传递给 erl 使其执行一些命令吗?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果您希望启动一个节点,例如启动一个 erlang 应用程序,或者运行几行来启动节点,您可以按以下方式运行 erl 命令
的几个命令启动节点,
,或者使用与上面相同 但将但是如果你想以更“脚本化”的方式运行erlang,
我建议你查看 脚本 和以下问题 就像D.Nibon 建议的
If you wish to start a node, and for example start an erlang application, or run a few lines for the start up of the node you can run the erl command the following way
or starting the node with several commands
the same has above but putting the node into a background process
But if you want to run erlang in a more "scriptwise" way I do suggest you look into escript and the following question like D.Nibon suggested
是的。你可以。
如果您问得更具体,如果可以的话,我会给您更具体的答案。
这似乎是一个比“bash”问题更“erlang”的问题。
Yes. You can.
If you ask more specific, i will get you a more specific answer, if i'm able to.
This seems like a more "erlang" question than a "bash" question.