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
2021-03-15 14:29:40 -04:00

16 lines
418 B
Markdown

# pgrep
> Find or signal processes by name.
> More information: <https://www.man7.org/linux/man-pages/man1/pkill.1.html>.
- Return PIDs of any running processes with a matching command string:
`pgrep {{process_name}}`
- Search for processes including their command line options:
`pgrep --full "{{process_name}} {{parameter}}"`
- Search for processes run by a specific user:
`pgrep --euid root {{process_name}}`