Function: eshell/echo

eshell/echo is a byte-compiled function defined in em-basic.el.gz.

Signature

(eshell/echo &rest ARGS)

Documentation

Implementation of echo. See eshell-plain-echo-behavior.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-basic.el.gz
(defun eshell/echo (&rest args)
  "Implementation of `echo'.  See `eshell-plain-echo-behavior'."
  (eshell-eval-using-options
   "echo" args
   '((?n nil nil output-newline "terminate with a newline")
     (?h "help" nil nil "output this help screen")
     :preserve-args
     :usage "[-n] [object]")
   (eshell-echo args output-newline)))