Function: eshell-quoted-file-command
eshell-quoted-file-command is a byte-compiled function defined in
esh-ext.el.gz.
Signature
(eshell-quoted-file-command COMMAND ARGS)
Documentation
If a command name begins with "/:", always call it externally.
Similar to eshell-explicit-command, this bypasses all Lisp functions
and aliases, but it also ignores file name handlers.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-ext.el.gz
(defun eshell-quoted-file-command (command args)
"If a command name begins with \"/:\", always call it externally.
Similar to `eshell-explicit-command', this bypasses all Lisp functions
and aliases, but it also ignores file name handlers."
(when (file-name-quoted-p command)
(eshell-external-command (file-name-unquote command) args)))