Next:
Killing a Process
Up:
Looking at Processes
Previous:
Process IDs
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
2006-03-17