tldr/pages/common/pgrep.md

17 lines
418 B
Markdown
Raw Normal View History

# pgrep
2021-03-15 18:29:40 +00:00
> 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:
2021-03-15 18:29:40 +00:00
`pgrep --full "{{process_name}} {{parameter}}"`
2021-03-15 18:29:40 +00:00
- Search for processes run by a specific user:
2021-03-15 18:29:40 +00:00
`pgrep --euid root {{process_name}}`