[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Cancel Shutdown in progress (have 10 hours)



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