我查看了几个在线帮助页面,以便在linux命令行中使用管道,但我无法获得任何工作。我最好的猜测是什么工作如下:
bundle show jquery-rails | gnome-open
但它失败了。如果我运行bundle show jquery-rails
然后复制结果,然后键入gnome-open
然后粘贴,它工作正常。有没有办法将它合并为一个步骤,我可以从命令行运行?
背景
如果您想了解我关心的原因,请参阅此问题:How do I browse the source code for a gem in Rails3 with RVM (linux & gedit)
答案 0 :(得分:0)
如question you posted on Ask Ubuntu中所述,您需要使用子命令。
gnome-open "$(bundle show jquery-rails)"