Function: eshell-send-eof-to-process

eshell-send-eof-to-process is an interactive and byte-compiled function defined in esh-mode.el.gz.

Signature

(eshell-send-eof-to-process)

Documentation

Send EOF to the currently-running "head" process.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/esh-mode.el.gz
(defun eshell-send-eof-to-process ()
  "Send EOF to the currently-running \"head\" process."
  (interactive)
  (eshell-send-input nil nil t)
  (when (eshell-head-process)
    (process-send-eof (eshell-head-process))))