# PS aliases

The ps.aliases.sh file creates helpful shortcut aliases for working with processes.

The PS aliases are a collection of aliases that allow you to interact with the ps command line tool. Ps is a tool which reports a snapshot of the current processes.

# PS

PS (opens new window) is a command that lists the processes running on the system.

Alias Command Description
pid ps -f Display the uid, pid, parent pid, recent CPU usage, process start time, controlling tty, elapsed CPU usage, and the associated command.
ps ps -ef Display all processes.
psa ps aux List all processes.