0

erlang プロセスを視覚化するために書かれたソフトウェアである erlubi をいじってみました。

エルルビ (github)

セットアップ手順の手順の 1 つを次に示します。

 "Run erlang with -pa erlubi/ebin -pa erlubi/deps/xmlrpc/ebin on the command line"

私の端末は「-pa」コマンドを認識せず、検索エンジンを使用しても言及が見つかりません。明らかな何かが欠けていますか?

4

1 に答える 1

5

From the man page:

-pa Dir1 Dir2 ... :
Adds the specified directories to the beginning of the code path, similar to code:add_pathsa/1 .

Basically, it enables erlang to use the compiled files in that directory

于 2012-10-10T21:31:41.177 に答える