node.js shell命令执行

时间:2013-01-22 12:25:12

标签: javascript node.js shell

我仍然试图掌握如何运行linux或windows shell命令以及在node.js中捕获输出的更好点;最终,我想做这样的事情......

//pseudocode
output = run_command(cmd, args)

重要的是output必须可用于全局范围的变量(或对象)。我尝试了以下功能,但出于某种原因,我将undefined打印到控制台......

function run_cmd(cmd, args, cb) {
  var spawn = require('child_process').spawn
  var child = spawn(cmd, args);
  var me = this;
  child.stdout.on('data', function(me, data) {
    cb(me, data);
  });
}
foo = new run_cmd('dir', ['/B'], function (me, data){me.stdout=data;});
console.log(foo.stdout);  // yields "undefined" <------

我无法理解代码在上面的位置......这个模型的一个非常简单的原型有效......

function try_this(cmd, cb) {
  var me = this;
  cb(me, cmd)
}
bar = new try_this('guacamole', function (me, cmd){me.output=cmd;})
console.log(bar.output); // yields "guacamole" <----

有人可以帮我理解为什么try_this()有效,run_cmd()没有? FWIW,我需要使用child_process.spawn,因为child_process.exec有200KB的缓冲限制。

最终决议

我接受了James White的回答,但这是对我有用的确切代码......

function cmd_exec(cmd, args, cb_stdout, cb_end) {
  var spawn = require('child_process').spawn,
    child = spawn(cmd, args),
    me = this;
  me.exit = 0;  // Send a cb to set 1 when cmd exits
  me.stdout = "";
  child.stdout.on('data', function (data) { cb_stdout(me, data) });
  child.stdout.on('end', function () { cb_end(me) });
}
foo = new cmd_exec('netstat', ['-rn'], 
  function (me, data) {me.stdout += data.toString();},
  function (me) {me.exit = 1;}
);
function log_console() {
  console.log(foo.stdout);
}
setTimeout(
  // wait 0.25 seconds and print the output
  log_console,
250);

10 个答案:

答案 0 :(得分:88)

这里有三个问题需要修复:

首先是您在异步使用stdout时期望同步行为。 run_cmd函数中的所有调用都是异步的,因此它将生成子进程并立即返回,无论是否从stdout读取了部分,全部或全部数据。因此,当你运行

console.log(foo.stdout);

你得到了目前存储在foo.stdout中的任何内容,并且无法保证会发生什么,因为你的子进程可能仍在运行。

第二是stdout是readable stream,因此1)数据事件可以被多次调用,2)回调被赋予缓冲区,而不是字符串。易于补救;只是改变

foo = new run_cmd(
    'netstat.exe', ['-an'], function (me, data){me.stdout=data;}
);

foo = new run_cmd(
    'netstat.exe', ['-an'], function (me, buffer){me.stdout+=buffer.toString();}
);

以便我们将缓冲区转换为字符串并将该字符串附加到我们的stdout变量。

第三是你只能知道在收到'end'事件时你已收到所有输出,这意味着我们需要另一个监听器和回调:

function run_cmd(cmd, args, cb, end) {
    // ...
    child.stdout.on('end', end);
}

所以,你的最终结果是:

function run_cmd(cmd, args, cb, end) {
    var spawn = require('child_process').spawn,
        child = spawn(cmd, args),
        me = this;
    child.stdout.on('data', function (buffer) { cb(me, buffer) });
    child.stdout.on('end', end);
}

// Run C:\Windows\System32\netstat.exe -an
var foo = new run_cmd(
    'netstat.exe', ['-an'],
    function (me, buffer) { me.stdout += buffer.toString() },
    function () { console.log(foo.stdout) }
);

答案 1 :(得分:78)

接受答案的简化版本(第三点),对我有用。

function run_cmd(cmd, args, callBack ) {
    var spawn = require('child_process').spawn;
    var child = spawn(cmd, args);
    var resp = "";

    child.stdout.on('data', function (buffer) { resp += buffer.toString() });
    child.stdout.on('end', function() { callBack (resp) });
} // ()

用法:

run_cmd( "ls", ["-l"], function(text) { console.log (text) });

run_cmd( "hostname", [], function(text) { console.log (text) });

答案 2 :(得分:47)

我更简洁地使用了这个:

var sys = require('sys')
var exec = require('child_process').exec;
function puts(error, stdout, stderr) { sys.puts(stdout) }
exec("ls -la", puts);

它完美无缺。 :)

答案 3 :(得分:42)

最简单的方法是使用ShellJS lib ...

$ npm install [-g] shelljs

EXEC示例:

require('shelljs/global');

// Sync call to exec()
var version = exec('node --version', {silent:true}).output;

// Async call to exec()
exec('netstat.exe -an', function(status, output) {
  console.log('Exit status:', status);
  console.log('Program output:', output);
});

ShellJs.org支持许多映射为NodeJS函数的常见shell命令,包括:

  • CD
  • CHMOD
  • CP
  • 显示目录
  • 回声
  • EXEC
  • 退出
  • 找到
  • 的grep
  • LN
  • LS
  • MKDIR
  • MV
  • POPD
  • PUSHD
  • PWD
  • RM
  • SED
  • 测试
  • 其中

答案 4 :(得分:4)

我遇到了类似的问题,最后我为此编写了一个节点扩展。你可以看看git存储库。它是开源的,免费的,还有所有好东西!

https://github.com/aponxi/npm-execxi

  

ExecXI是用C ++编写的节点扩展,用于执行shell命令   逐个输出命令的输出到控制台   即时的。存在可选的链式和无链接方式;含义   您可以选择在命令失败后停止脚本   (链式),或者你可以继续,好像什么也没发生过!

使用说明位于ReadMe file。随意提出拉动请求或提交问题!

我认为值得一提。

答案 5 :(得分:4)

@TonyO'Hagan是全面的shelljs回答,但是,我想强调他答案的同步版本:

var shell = require('shelljs');
var output = shell.exec('netstat -rn', {silent:true}).output;
console.log(output);

答案 6 :(得分:1)

同步单行:

require('child_process').execSync("echo 'hi'", function puts(error, stdout, stderr) { console.log(stdout) });

答案 7 :(得分:0)

您的run_cmd函数存在变量冲突:

  var me = this;
  child.stdout.on('data', function(me, data) {
    // me is overriden by function argument
    cb(me, data);
  });

只需将其更改为:

  var me = this;
  child.stdout.on('data', function(data) {
    // One argument only!
    cb(me, data);
  });

为了查看错误,请始终添加:

  child.stderr.on('data', function(data) {
      console.log( data );
  });

编辑您的代码失败是因为您尝试运行dir 而不是作为单独的独立程序提供。它是cmd进程中的命令。如果您想使用文件系统,请使用原生require( 'fs' )

或者(我不建议)您可以创建一个批处理文件然后运行。请注意,默认情况下,操作系统会通过cmd触发批处理文件。

答案 8 :(得分:0)

您实际上并未从run_cmd函数返回任何内容。

function run_cmd(cmd, args, done) {
    var spawn = require("child_process").spawn;
    var child = spawn(cmd, args);
    var result = { stdout: "" };
    child.stdout.on("data", function (data) {
            result.stdout += data;
    });
    child.stdout.on("end", function () {
            done();
    });
    return result;
}

> foo = run_cmd("ls", ["-al"], function () { console.log("done!"); });
{ stdout: '' }
done!
> foo.stdout
'total 28520...'

工作得很好。 :)

答案 9 :(得分:0)

获奖最多的答案的宣传版本:

  runCmd: (cmd, args) => {
    return new Promise((resolve, reject) => {
      var spawn = require('child_process').spawn
      var child = spawn(cmd, args)
      var resp = ''
      child.stdout.on('data', function (buffer) { resp += buffer.toString() })
      child.stdout.on('end', function () { resolve(resp) })
    })
  }

使用:

 runCmd('ls').then(ret => console.log(ret))