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 Status - Control Running Processes | Online Free DevTools by Hexmos

Control running processes with Process Status (ps). Monitor system resources, identify resource-intensive processes, and troubleshoot performance issues. Free online tool, no registration required.

ps

Information about running processes. More information: https://keith.github.io/xcode-man-pages/ps.1.html.

  • List all running processes:

ps aux

  • List all running processes including the full command string:

ps auxww

  • Search for a process that matches a string:

ps aux | grep {{string}}

  • Get the parent PID of a process:

ps -o ppid= -p {{pid}}

  • Sort processes by memory usage:

ps -m

  • Sort processes by CPU usage:

ps -r

See Also