Function: eshell--apply-redirections

eshell--apply-redirections is a byte-compiled function defined in esh-io.el.gz.

Signature

(eshell--apply-redirections CMD)

Documentation

Apply any redirection which were specified for COMMAND.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-io.el.gz
(defun eshell--apply-redirections (cmd)
  "Apply any redirection which were specified for COMMAND."
  (if eshell-current-redirections
      `(progn
         ,@eshell-current-redirections
         ,cmd)
    cmd))