当前版本的 msysgit 支持进程替换吗?
在我的 msysgit 版本下,我无法使用进程替换。
cat <(echo 'foo')
sh.exe": cannot make pipe for process substitution: Function not implemented
如果我升级到最新版本的 msysgit,它的 msys / mingw 版本是否能够处理进程替换?
我当前的 msysgit 版本是 1.7.0.2.msysgit.0,GNU bash 是版本 3.1.0(3)-release (i686-pc-msys)。
Under my version of msysgit, I can't use process substitution.
cat <(echo 'foo')
sh.exe": cannot make pipe for process substitution: Function not implemented
If I upgraded to the latest version of msysgit, would its version of msys / mingw be able to handle process substitution?
My current version of msysgit is 1.7.0.2.msysgit.0 and GNU bash is version 3.1.0(3)-release (i686-pc-msys).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
恐怕从 1.7.6.msysgit.0 开始,这仍然是一个否,它有 Bash 3.1.0(1)。
Afraid this is still a no as of 1.7.6.msysgit.0 which has Bash 3.1.0(1).
使用 Git 2.5.0,Bash 也更新了:
所以,现在你的命令可以正常工作了:
With Git 2.5.0 also the Bash is updated:
So, now your command works fine: