Linux Commands Reference - Complete Linux Command Guide

Comprehensive Linux command reference with 150+ commands. Search, filter by category, and view detailed usage examples.

Share
Back to commands

ps

Report process status

Syntax

ps [OPTION]...

Common Options

auxShow all processes for all users
efShow all processes full format
-uFilter by user
-pFilter by PID
--sortSort by field

Common Examples

ps aux

Show all processes

ps aux | grep nginx

Find specific process

ps -u username

Show processes for user

ps -ef --sort=-%mem

Sort by memory usage

Related Commands

Related Tools

More Code & Dev Tools