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.
我正在学习 perl 模块 IPC::Run。在阅读 cpan 文档时,我遇到了'<pipe'. 我写了一个小程序。在执行时它总是挂起。
'<pipe'
我编写的代码:这只是 cpan doc 的副本。
local (*IN); @cat = ('cat') $h = star
翻译自:https://stackoverflow.com/questions/19731920 2013-11-01T17:22:34.870 110 次 This question shows research effort; it is useful and clear 2 This question does not show any research effort; it is unclear or not useful Bookmark this question. Show activity on this post. perl 4 1 回答 1 This answer is useful 1 的文档pump说“它会阻塞,直到它提供一些输入或接收一些输出。” pump在那个例子中调用是没有意义的。start没有得到任何交付,start也没有被指示听cat。 删除该行。 于 2013-11-01T17:43:22.750 回答 Related 1 php - 防止写入表单时弹出数据库结果 3 c# - 将 XML 转换为通用列表 1 java - 创建视图后运行方法 - Android 0 jquery - Wordpress 自定义搜索:在帖子内容中搜索,但在结果中显示父页面 4 c# - 在datagridview c#中只选择一个单元格文本 5 php - PHP代码为数据库生成随机ID号 6 android - android:在没有“保存”/“删除”确认的情况下拍摄相机照片 2 python - 按值查找相同的字典 1 gwt - 重定向到 GWT 中的第二页不会在第二页中加载 GWT 组件 1 date - 在 acrobat javascripts 中验证两个日期 Reference php × 1429865 c/c++ × 756500 nginx × 49975 mongodb × 159057 mybatis × 3233 anaconda × 13410 pycharm × 14671 python × 1902243 vscode × 56040 docker × 110988 github × 49000 flask × 49129 ffmpeg × 24037 jmeter × 16910 matplotlib × 63493 bootstrap × 54641
的文档pump说“它会阻塞,直到它提供一些输入或接收一些输出。”
pump
pump在那个例子中调用是没有意义的。start没有得到任何交付,start也没有被指示听cat。
start
cat
删除该行。