我在收到错误时遇到问题:
events.js:48
throw arguments[1]; // Unhandled 'error' event
^
Error: write EPIPE
at errnoException (net.js:670:11)
at Object.afterWrite [as oncomplete] (net.js:503:19)
当管道输出到头部时。一个简单的尝试案例是:
console.log('some string');
... the same for 20 lines
然后node test.js | head
得到错误,这似乎出现在 Ubuntu 12.04 上运行的大约 70% 中。有什么问题?