Function: eshell-external-command--which

eshell-external-command--which is a byte-compiled function defined in esh-ext.el.gz.

Signature

(eshell-external-command--which COMMAND)

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-ext.el.gz
(defun eshell-external-command--which (command)
  (or (eshell-search-path command)
      (error "no %s in (%s)" command
             (string-join (eshell-get-path t) (path-separator)))))