killall
is a command line utility available on Unix-like systems. There are two very different implementations.
pkill
and skill
commands, killing only the processes specified on the command line.Both commands operate by sending a signal, like the kill
program.
Kill all processes named xmms:
killall xmms
de:Kill (Unix)#killall
Original source: https://en.wikipedia.org/wiki/Killall.
Read more |