1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-03-28 21:16:20 +01:00
tldr/pages/common/pgrep.md
2025-03-12 21:05:58 +02:00

410 B

pgrep

Find or signal processes by name. More information: https://www.manned.org/pgrep.

  • Return PIDs of any running processes with a matching command string:

pgrep {{process_name}}

  • Search for processes including their command-line options:

pgrep {{[-f|--full]}} "{{process_name}} {{parameter}}"

  • Search for processes run by a specific user:

pgrep {{[-u|--euid]}} root {{process_name}}