mirror of
https://github.com/cheat/cheat.git
synced 2024-11-10 21:26:49 +01:00
8 lines
179 B
Plaintext
8 lines
179 B
Plaintext
# 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 |