Function: eshell-explicit-command--which

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

Signature

(eshell-explicit-command--which COMMAND)

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-ext.el.gz
(defun eshell-explicit-command--which (command)
  (when (and (> (length command) 1)
             (eq (aref command 0) eshell-explicit-command-char))
    (eshell-external-command--which (substring command 1))))