ps aux
Display all running processes with detailed information including CPU and memory usage.
Primary Syntax
$ ps aux
#
Example Usage
ps aux | grep nginx
ps aux --sort=-%mem | head#
Quick Tips
• Use man ps to read the full manual
• Add --help flag for quick options reference
• Combine with | less for paginated output
Submitted by: admin
Added: 2/9/2026