NodeJS子プロセスを介してWindowsでコマンドを実行しようとしています。
var terminal = require('child_process').spawn('cmd');
terminal.stdout.on('data', function (data) {
console.log('stdout: ' + data);
});
terminal.stderr.on('data', function (data) {
console.log('stderr: ' + data);
});
terminal.on('exit', function (code) {
console.log('child process exited with code ' + code);
});
setTimeout(function() {
terminal.stdin.write('echo %PATH%');
}, 2000);
ti.stdin.write
を呼び出すと、stdin
記述子に書き込みますが、cmd
をトリガーしてこの時点で反応させるにはどうすればよいですか?コマンドプロンプトで実際に入力しているときに行う「Enter」キー信号を送信するにはどうすればよいですか?現在、cmd
から応答がありません。
改行_\n
_を送信すると、コマンドが実行されます。 .end()
はシェルを終了します。
Osxを使用しているときに、bashで動作するように例を変更しました。
_var terminal = require('child_process').spawn('bash');
terminal.stdout.on('data', function (data) {
console.log('stdout: ' + data);
});
terminal.on('exit', function (code) {
console.log('child process exited with code ' + code);
});
setTimeout(function() {
console.log('Sending stdin to terminal');
terminal.stdin.write('echo "Hello $USER. Your machine runs since:"\n');
terminal.stdin.write('uptime\n');
console.log('Ending terminal session');
terminal.stdin.end();
}, 1000);
_
出力は次のようになります。
_Sending stdin to terminal
Ending terminal session
stdout: Hello root. Your machine runs since:
stdout: 9:47 up 50 mins, 2 users, load averages: 1.75 1.58 1.42
child process exited with code 0
_
次のコマンドで行末(\ n)を送信するだけです。
setTimeout(function() {
terminal.stdin.write('echo %PATH%\n');
}, 2000);
Child_process execメソッドを使用できます。以下に例を示します。
var exec = require('child_process').exec,
child;
child = exec('echo %PATH%',
function (error, stdout, stderr) {
if(stdout!==''){
console.log('---------stdout: ---------\n' + stdout);
}
if(stderr!==''){
console.log('---------stderr: ---------\n' + stderr);
}
if (error !== null) {
console.log('---------exec error: ---------\n[' + error+']');
}
});
ある時点でstdin.end()
しないと、子プロセスが終了しないことを確認してください。