On Tue, 7 Aug 2001, Martin Marconcini wrote:
> Killall? That's not a valid command...
If you really want it automated:
ps axc | awk '/shutdown/ { print $1 }' | xargs kill
But it's probably just easier to do:
ps ax # And look at PID
kill $PID
Hmm, it indeed is not documented.
> Martin Marconcini
> www.marconcini.com.ar