Files
cheatsheet-tldr/tldr/linux/pidof
2024-04-19 00:13:37 +00:00

26 lines
462 B
Plaintext

---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# pidof
> Get the ID of a process using its name.
> More information: <https://manned.org/pidof>.
- 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:
`kill $(pidof {{name}})`