Function: eshell-insert-process
eshell-insert-process is an interactive and byte-compiled function
defined in esh-proc.el.gz.
Signature
(eshell-insert-process PROCESS)
Documentation
Insert the name of PROCESS into the current buffer at point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-proc.el.gz
(defun eshell-insert-process (process)
"Insert the name of PROCESS into the current buffer at point."
(interactive
(list (get-process
(eshell-read-process-name "Name of process: "))))
(insert-and-inherit "#<process "
(eshell-quote-argument (process-name process))
">"))