tldr/pages/linux/pidof.md

21 lines
371 B
Markdown
Raw Normal View History

2020-04-01 01:41:36 +01:00
# pidof
> Gets the ID of a process using its name.
> More information: <https://manned.org/pidof>.
2020-04-01 01:41:36 +01:00
- List all process IDs with given name:
`pidof {{bash}}`
- List a single process ID with given name:
`pidof -s {{bash}}`
- List process IDs including scripts with given name:
`pidof -x {{script.py}}`
- Kill all processes with given name:
2021-10-16 22:04:47 +01:00
`kill $(pidof {{name}})`