mirror of
https://github.com/cheat/cheat.git
synced 2024-11-16 17:08:29 +01:00
15 lines
335 B
Text
15 lines
335 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
|
|
|
|
# Exclude grep from your grepped output of ps.
|
|
# Add [] to the first letter. Ex: sshd -> [s]shd
|
|
ps aux | grep '[h]ttpd'
|