Function: eshell/fgrep

eshell/fgrep is a byte-compiled function defined in em-unix.el.gz.

Signature

(eshell/fgrep &rest ARGS)

Documentation

Use Emacs grep facility instead of calling external grep -F.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-unix.el.gz
(defun eshell/fgrep (&rest args)
  "Use Emacs grep facility instead of calling external grep -F."
  (eshell-grep "grep" (append '("-FH") args) t))