acpi, adduser, cp, fsck, halt, lsmod, lsusb, mkfs, modinfo, modprobe, pidof, poweroff: add Italian translation

This commit is contained in:
Andrea
2020-10-25 16:22:31 +01:00
committed by Starbeamrainbowlabs
parent 6155aa9a2a
commit 78a1f4ce6b
12 changed files with 224 additions and 0 deletions

19
pages.it/linux/pidof.md Normal file
View File

@@ -0,0 +1,19 @@
# pidof
> Ottiene l'ID di un processo a partire dal suo nome.
- Elenca gli ID di tutti i processi con un dato nome:
`pidof {{bash}}`
- Elenca un solo ID di processo con il nome specificato:
`pidof -s {{bash}}`
- Elenca gli ID dei processi con un dato includendo anche gli script:
`pidof -x {{script.py}}`
- Uccide tutti i processi con un dato nome:
`kill "$(pidof {{nome}})" `