一尘不染

在node.js中执行并获取shell命令的输出

node.js

在node.js中,我想找到一种方法来获取Unix终端命令的输出。有什么办法吗?

function getCommandOutput(commandString){
    // now how can I implement this function?
    // getCommandOutput("ls") should print the terminal output of the shell command "ls"
}

阅读 1206

收藏
2020-07-07

共1个答案

一尘不染

那就是我现在正在工作的项目中这样做的方式。

var exec = require('child_process').exec;
function execute(command, callback){
    exec(command, function(error, stdout, stderr){ callback(stdout); });
};

示例:检索git用户

module.exports.getGitUser = function(callback){
    execute("git config --global user.name", function(name){
        execute("git config --global user.email", function(email){
            callback({ name: name.replace("\n", ""), email: email.replace("\n", "") });
        });
    });
};
2020-07-07