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 | fzftry on your machineexplain this command
-
linux:process:check:running Check if a given process is running.$ ps aux | grep ${process_name}try on your machineexplain this command
-
peco:tldr:12c71 peco: Start peco for running processes.$ ps aux | pecotry on your machineexplain this command
-
ps:tldr:37b43 ps: Get the parent PID of a process.$ ps -o ppid= -p ${pid}try on your machineexplain this command
-
ps:tldr:40891 ps: Sort processes by memory consumption.$ ps --sort sizetry on your machineexplain this command
-
ps:tldr:8fd94 ps: List all processes of the current user in extra full format.$ ps --user $(id -u) -Ftry on your machineexplain this command
-
ps:tldr:ac958 ps: List all processes of the current user as a tree.$ ps --user $(id -u) ftry on your machineexplain this command
-
ps:tldr:e29b5 ps: List all running processes including the full command string.$ ps auxwwtry on your machineexplain this command
-
sk:tldr:11300 sk: Start skim for running processes.$ ps aux | sktry on your machineexplain this command
-
system:processes:list Lists all processes running on the system in a detailed format.$ ps -auxtry on your machineexplain this command