cheat-fork-echo/cheatsheets/ps
2013-10-09 00:16:31 +02:00

12 lines
214 B
Plaintext

# To list every process on the system:
ps aux
# To list a process tree
ps axjf
# To list every process owned by foouser:
ps -aufoouser
# To list every process with a user-defined format:
ps -eo pid,user,command