List all running processes

$ ps aux

Command
ps
Description
Show a comprehensive list of all running processes with details like User, PID, CPU, and Memory usage.
Deep Dive
Commonly piped to grep: `ps aux | grep [name]`.