const { spawn } = require('child_process')
const child = spawn('wc')
process.stdin.pipe(child.stdin)
child.stdout.on('data', (data) => {
console.log(`child stdout:\n ${data}`)
})
在父进程下按ctrl + d时会执行child.stdout.on('data'...
,
为什么不按ctrl + c?
注意
Ctrl + c
使用信号SIGINT
来杀死进程
Ctrl + d
通知应用程序已到达文件末尾。