标签: 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)