我正在查看启动脚本为的项目中的Elixir代码:
elixir -pa _build/<a directory with .beam files> -S mix run -e "MyApp" --no-deps-check --no-compile --no-halt
Run Code Online (Sandbox Code Playgroud)
我很好奇-pa旗帜选项是什么.我找不到elixir的手册页或帮助页面.
$ man elixir
No manual entry for elixir
Run Code Online (Sandbox Code Playgroud)
是否有针对elixir的其他命令行选项的在线文档?
运行elixir --help而不是man elixir(Elixir的手册页应该更早而不是更晚,请参阅此拉取请求).输出说:
...
-pa "path" Prepends the given path to Erlang code path (*)
...
Run Code Online (Sandbox Code Playgroud)
其中,*在该选项可通过不止一次结束的信号.