![]() |
Software > Linux tools >
Terminate a process.
Kill all killable processes:
\kill -9 -1
Kill something specific:
\kill $( pidof xterm )
But this only kills one occurrence; you probably want killall.
![]() |
Software > Linux tools >
Terminate a process.
Kill all killable processes:
\kill -9 -1
Kill something specific:
\kill $( pidof xterm )
But this only kills one occurrence; you probably want killall.
ported