我正在学习 perl 模块 IPC::Run。在阅读 cpan 文档时,我遇到了'<pipe'. 我写了一个小程序。在执行时它总是挂起。
'<pipe'
我编写的代码:这只是 cpan doc 的副本。
local (*IN); @cat = ('cat') $h = star_Stack Overflow中文网
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
local (*IN); @cat = ('cat') $h = star 问问题
的文档pump说“它会阻塞,直到它提供一些输入或接收一些输出。”
pump
pump在那个例子中调用是没有意义的。start没有得到任何交付,start也没有被指示听cat。
start
cat
删除该行。