mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-03 14:31:06 +01:00
12 lines
214 B
Plaintext
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
|