mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
22 lines
499 B
Plaintext
22 lines
499 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# pgrep
|
|
|
|
> Find or signal processes by name.
|
|
> More information: <https://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}}`
|