child_process 执行系统shell命令

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了child_process 执行系统shell命令相关的知识,希望对你有一定的参考价值。


var process = require(child_process);

process.exec(ls -af,function (error, stdout, stderr)
if (error !== null)
console.log(exec error: + error);

console.log(stdout);

);


以上是关于child_process 执行系统shell命令的主要内容,如果未能解决你的问题,请参考以下文章

nodejs 怎样检测子进程执行完成

Nodejs中调用系统命令Shell脚本的方法和实例

Nodejs child_process 模块

如何在nodejs里调用执行系统命令

无法从Electron打包应用程序执行shell命令

node child_process没有在mac上执行多一个命令,但在windows上工作正常