Variable: eshell-redirection-operators-alist

eshell-redirection-operators-alist is a variable defined in esh-io.el.gz.

Value

(("<" . input) (">" . overwrite) (">>" . append) (">>>" . insert))

Documentation

An association list of redirection operators to symbols describing the mode, e.g. for using with eshell-get-target.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-io.el.gz
;;; Internal Variables:

(defconst eshell-redirection-operators-alist
  '(("<"   . input)                     ; FIXME: Not supported yet.
    (">"   . overwrite)
    (">>"  . append)
    (">>>" . insert))
  "An association list of redirection operators to symbols
describing the mode, e.g. for using with `eshell-get-target'.")