1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/pgrep.md

17 lines
410 B
Markdown
Raw Normal View History

# pgrep
2021-03-15 15:29:40 -03:00
> 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:
2025-03-12 21:05:58 +02:00
`pgrep {{[-f|--full]}} "{{process_name}} {{parameter}}"`
2021-03-15 15:29:40 -03:00
- Search for processes run by a specific user:
2025-03-12 21:05:58 +02:00
`pgrep {{[-u|--euid]}} root {{process_name}}`