2020-04-01 01:41:36 +01:00
|
|
|
# pidof
|
|
|
|
|
2024-04-18 05:04:00 +01:00
|
|
|
> Get the ID of a process using its name.
|
2022-03-21 17:07:48 +00:00
|
|
|
> 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}})`
|