我想
C:\>ACommandThatGetsData > save.txt
但是我不想在控制台中解析和保存数据,而是想用Node.JS执行上述命令
如何使用Node.JS执行 shell 命令?
我想
C:\>ACommandThatGetsData > save.txt
但是我不想在控制台中解析和保存数据,而是想用Node.JS执行上述命令
如何使用Node.JS执行 shell 命令?
process.execPath('/path/to/executable');
我应该更好地阅读文档。
有一个允许执行子进程的子进程模块。您将需要child_process.exec
或child_process.execFile
。child_process.spawn
所有这些在使用上都是相似的,但每个都有自己的优点。使用哪一个取决于您的需求。
你也可以试试node-cmd包:
const nodeCmd = require('node-cmd');
nodeCmd.get('dir', (err, data, stderr) => console.log(data));
我知道这个问题很老,但它帮助我使用 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();