19

我想

C:\>ACommandThatGetsData > save.txt

但是我不想在控制台中解析和保存数据,而是想用Node.JS执行上述命令

如何使用Node.JS执行 shell 命令?

4

3 回答 3

16

使用process.execPath()

process.execPath('/path/to/executable');

更新

我应该更好地阅读文档。

有一个允许执行子进程的子进程模块。您将需要child_process.execchild_process.execFilechild_process.spawn所有这些在使用上都是相似的,但每个都有自己的优点。使用哪一个取决于您的需求。

于 2013-04-10T07:19:24.473 回答
8

你也可以试试node-cmd包:

const nodeCmd = require('node-cmd');
nodeCmd.get('dir', (err, data, stderr) => console.log(data));
于 2017-08-23T16:18:47.563 回答
2

我知道这个问题很老,但它帮助我使用 Promise 找到了我的解决方案。另请参阅:此问题和答案

const util = require('util');
const exec = util.promisify(require('child_process').exec);

async function runCommand(command) {
  const { stdout, stderr, error } = await exec(command);
  if(stderr){console.error('stderr:', stderr);}
  if(error){console.error('error:', error);}
  return stdout;
}


async function myFunction () {
    // your code here building the command you wish to execute ...
    const command = 'dir';
    const result = await runCommand(command);
    console.log("_result", result);
    // your code here processing the result ...
}

// just calling myFunction() here so it runs when the file is loaded
myFunction();
于 2021-01-04T23:27:39.640 回答