Little bash programming

Top Pagina
Bijlagen:
Bericht als e-mail
+ (text/plain)
Delete this message
Reply to this message
Auteur: Jeffrey Pyne
Datum:  
Onderwerp: 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'}`
>