Function: dired-run-shell-command
dired-run-shell-command is an autoloaded and byte-compiled function
defined in dired-aux.el.gz.
Signature
(dired-run-shell-command COMMAND)
Source Code
;; Defined in /usr/src/emacs/lisp/dired-aux.el.gz
;; This is an extra function so that it can be redefined by ange-ftp.
;;;###autoload
(defun dired-run-shell-command (command)
(let ((handler
(find-file-name-handler (directory-file-name default-directory)
'shell-command)))
(if handler (apply handler 'shell-command (list command))
(shell-command command)))
;; Return nil for sake of nconc in dired-bunch-files.
nil)