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