Forrest logo
tool overview
On this page you find all important commands for the CLI tool ps. If the command you are looking for is missing please ask our AI.

ps

The ps utility displays a header line, followed by lines containing information about all of your processes that have controlling terminals.

List of commands for ps:

  • fzf:tldr:baa1d fzf: Start fzf for running processes.
    $ ps aux | fzf
    try on your machine
    explain this command
  • linux:process:check:running Check if a given process is running.
    $ ps aux | grep ${process_name}
    try on your machine
    explain this command
  • peco:tldr:12c71 peco: Start peco for running processes.
    $ ps aux | peco
    try on your machine
    explain this command
  • ps:tldr:37b43 ps: Get the parent PID of a process.
    $ ps -o ppid= -p ${pid}
    try on your machine
    explain this command
  • ps:tldr:40891 ps: Sort processes by memory consumption.
    $ ps --sort size
    try on your machine
    explain this command
  • ps:tldr:43f3d ps: List all running processes.
    $ ps aux
    try on your machine
    explain this command
  • ps:tldr:8fd94 ps: List all processes of the current user in extra full format.
    $ ps --user $(id -u) -F
    try on your machine
    explain this command
  • ps:tldr:ac958 ps: List all processes of the current user as a tree.
    $ ps --user $(id -u) f
    try on your machine
    explain this command
  • ps:tldr:e29b5 ps: List all running processes including the full command string.
    $ ps auxww
    try on your machine
    explain this command
  • sk:tldr:11300 sk: Start skim for running processes.
    $ ps aux | sk
    try on your machine
    explain this command
  • system:processes:list Lists all processes running on the system in a detailed format.
    $ ps -aux
    try on your machine
    explain this command
tool overview