Variable: dired-shell-command-history
dired-shell-command-history is a variable defined in dired-aux.el.gz.
Value
nil
Documentation
History list for commands that read dired-shell commands.
Source Code
;; Defined in /usr/src/emacs/lisp/dired-aux.el.gz
;;; Guess shell command
;; * `dired-guess-shell-command' provides smarter defaults for
;; `dired-read-shell-command'.
;;
;; * `dired-guess-shell-command' calls `dired-guess-default' with list of
;; marked files.
;;
;; * Parse `dired-guess-shell-alist-user', `dired-guess-shell-alist-default',
;; `dired-guess-shell-alist-optional' (in that order) for the first REGEXP
;; that matches the first file in the file list.
;;
;; * If the REGEXP matches all the entries of the file list then evaluate
;; COMMAND, which is either a string or a Lisp expression returning a
;; string. COMMAND may be a list of commands.
;;
;; * Return this command to `dired-guess-shell-command' which prompts user
;; with it. The list of commands is put into the list of default values.
;; If a command is used successfully then it is stored permanently in
;; `dired-shell-command-history'.
;; Guess what shell command to apply to a file.
(defvar dired-shell-command-history nil
"History list for commands that read dired-shell commands.")