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.