system exit
主要範例
#!/usr/bin/gjs
const System = imports.system;
if (ARGV.length > 0) {
System.exit(1);
}
System.exit(0);
#!/bin/sh
./main.js
echo $?
example/system/exit/test_args.sh
#/bin/sh
./main.js some
echo $?
測試
執行
$ ./test.sh
會顯示
0
執行
$ ./test_args.sh
會顯示
1
更多參考
- Github / Gnome / gjs / installed-tests / scripts / testSystemExit.js