Commands.app

ps

System Info

Display information about running processes

Options & Flags
Available options for this command
aux

Show all processes with detailed information

-ef

Show all processes with full format listing

-u username

Show processes for specific user

Examples
Common usage examples

List all running processes with details

ps aux

Find nginx processes

ps aux | grep nginx

Show processes run by www-data user

ps -u www-data
Notes
  • Use 'top' or 'htop' for real-time process monitoring
  • Process ID (PID) is used to kill or manage processes
Related Commands
You might also find these useful