Little bash programming

Kezdőlap
Csatolmányok:
Üzenet email-ben
+ (text/plain)
Üzenet törlése
Válasz az üzenetre
Szerző: Jeffrey Pyne
Dátum:  
Tárgy: Little bash programming
...or:

pkill mozilla

I usually precede that with a

pgrep -l mozilla

Just to preview what I will be killing. Just another way to skin this
particular cat.

~Jeff

On Wednesday, July 10, 2002 10:00 PM, Robert Bushman sent:

> Hmmm, important safety tip - the right way to do this is:
>
> $ ps -a | grep mozilla
>
> VERIFY THAT YOU WANT ALL DISPLAYED PROCESSES TO DIE!
>
> $ kill `ps -a | grep mozilla | awk {'print $1'}`
>