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命令的主要内容,如果未能解决你的问题,请参考以下文章