是否可以在nodejs上的分离子进程中运行stdin.write?

时间:2018-06-13 00:05:37

标签: node.js child-process spawn

我想在一个分离的子进程中执行一个命令,我不知道为什么当分离选项设置为true时,child.stdin.write只是不起作用,

查看我想要做的一个例子:

let child = require('child_process').spawn('cmd', ['/k'], {
    shell: true,
    detached: true,
})

setTimeout(()=>{
    child.stdin.write("echo ooooooo\n")
}, 3000)

0 个答案:

没有答案