Function: sh-send-text

sh-send-text is a byte-compiled function defined in sh-script.el.gz.

Signature

(sh-send-text TEXT)

Documentation

Send TEXT to sh-shell-process(var)/sh-shell-process(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defun sh-send-text (text)
  "Send TEXT to `sh-shell-process'."
  (comint-send-string (sh-shell-process t) (concat text "\n")))