runCommand

種類メソッド
書式runCommand()
解説
UNIXコマンドを実行します。
サンプルコード
function sampleCode()
{
result = runCommand("ps -ax");
txtField.data = result;
print(result);
}
sampleCode();
実際のスクリプトをダウンロード