mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 08:58:28 +01:00
11 lines
214 B
Text
11 lines
214 B
Text
# 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
|