logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Process Monitor - Display Active Processes | Online Free DevTools by Hexmos

Monitor active processes with procs. View CPU usage and manage system resources on Linux, macOS, and other Unix-like systems. Free online tool, no registration required.

procs

Display information about the active processes. More information: https://github.com/dalance/procs.

  • List all processes showing the PID, user, CPU usage, memory usage, and the command which started them:

procs

  • List all processes as a tree:

procs --tree

  • List information about processes, if the commands which started them contain Zsh:

procs {{zsh}}

  • List information about all processes sorted by CPU time in [a]scending or [d]escending order:

procs {{--sorta|--sortd}} cpu

  • List information about processes with either a PID, command, or user containing 41 or firefox:

procs --or {{PID|command|user}} {{41}} {{firefox}}

  • List information about processes with both PID 41 and a command or user containing zsh:

procs --and {{41}} {{zsh}}

See Also