console interact

主要範例

程式碼

#!/usr/bin/gjs

const Console = imports.console;

Console.interact();

執行

$ ./interact.js

上面的程式碼執行完。

雷同執行下面的指令,進入「互動模式」。

$ gjs

或是執行

$ gjs-console

其中差別在「interact.js」下參數,並沒有作用。

可以執行

$ ./interact.js -h

直接進入「互動模式」,顯示

gjs>

和執行下面的指令對照。

$ gjs -h

則是顯示

Usage:
  gjs [OPTION...]

Application Options:
  -c, --command=COMMAND        Program passed in as a string
  -C, --coverage-path=FILE     Add the filename FILE to the list of files to generate coverage info for
  --coverage-output=DIR        Write coverage output to a directory DIR. This option is mandatory when using --coverage-path
  -I, --include-path=DIR       Add the directory DIR to the list of directories to search for js files.

更多參考