mirror of
https://github.com/Erreur32/cheat.git
synced 2025-01-13 16:22:03 +01:00
8 lines
179 B
Text
8 lines
179 B
Text
|
# To list every process on the system:
|
||
|
ps aux
|
||
|
|
||
|
# To list every process owned by foouser:
|
||
|
ps -aufoouser
|
||
|
|
||
|
# To list every process with a user-defined format:
|
||
|
ps -eo pid,user,command
|