View currently running processes
ps
Shows the processes for the current shell
a Show processes for all usersu Include CPU and memory usage among other thingsx Include processes without a controlling terminalStandard use
ps aux
Lists all running processes with detailed information
Find processes by name
ps aux | grep firefox
Lists running Firefox processes