Function: eshell/jobs
eshell/jobs is a byte-compiled function defined in esh-proc.el.gz.
Signature
(eshell/jobs)
Documentation
List processes, if there are any.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-proc.el.gz
(defun eshell/jobs ()
"List processes, if there are any."
(and (fboundp 'process-list)
(process-list)
(list-processes)))