emacs eshell grep on grep 输出
在 eshell 中,好处之一是 grep 等命令的输出将被重定向到 Emacs 特殊缓冲区。但是,如果我对之前的 grep 执行 grep,例如:
grep "abc" *.el | grep -v "ghi"
该输出仅出现在标准输出中。我想知道是否有一种方法可以将该输出定向到 Emacs 特殊缓冲区。
谢谢。
In eshell, one of the nice things is commands like grep's output will be redirected to Emacs special buffers. However, if I do a grep on previous grep, e.g.:
grep "abc" *.el | grep -v "ghi"
that output only appears in standard output. I'm wondering if there is a way to direct that output to Emacs special buffer as well.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(grep "grep abc *.el | grep -v ghi -")
在新窗口中打开生成的匹配项,但next-error
不适用于它。(grep "grep abc *.el | grep -v ghi -")
opens the resulting matches in a new widow, butnext-error
does not work with it though.