cp.js
// node0.12.0 windowsvar spawn = require("child_process").spawn, grep = spawn("cmd", ["F:/"]); console.log( "spawned child pid " + grep.pid); // grep.stdin.end()
指令:node cp.js
就会看到子进程的pid了。因为注释了grep.stdin.end() 。在任务管理里,还会看到child process还存在。(→_→)成了僵尸进程了??