Function: eshell/man

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

Signature

(eshell/man &rest ARGS)

Documentation

Invoke man, flattening the arguments appropriately.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-unix.el.gz
(defun eshell/man (&rest args)
  "Invoke man, flattening the arguments appropriately."
  (funcall 'man (apply 'eshell-flatten-and-stringify args)))