Next:
Killing a Process
Up:
Looking at Processes
Previous:
Process IDs
Contents
Viewing Active Processes
The
ps
command displays the processes that are running on your system.
$ ps
This invocation of
ps
shows two processes. The first,
bash
, is the shell running on this terminal. The second is the running instance of the
ps
program itself.
$ ps -e -o pid,ppid,command
Cem Ozdogan 2007-05-16