PS Commands Cheat Sheet
Here is a cli commands cheat sheet for PS command, you can use this as a quick reminder for basic commands with a brief description for each of the commands.
What is PS command?
Add some data here
# 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'
Check out the PS command documentation .
You can also check our MegaSh cheatsheet tool, that has 150+ searchable linux cheat sheets in one page, so you never forget a command as you work again