Function: eshell/rgrep
eshell/rgrep is a byte-compiled function defined in em-unix.el.gz.
Signature
(eshell/rgrep &rest ARGS)
Documentation
Use Emacs grep facility instead of calling external rgrep.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/em-unix.el.gz
(defun eshell/rgrep (&rest args)
"Use Emacs grep facility instead of calling external rgrep."
(eshell-grep "grep" (append '("-rH") args) t))