Scripts to start and stop

Brad Knowles brad.knowles at skynet.be
Fri May 25 17:45:12 UTC 2001


At 1:36 PM -0400 5/25/01, Adam Lang wrote:

>  so I would have soemthing like this:
>
>  $nanny_pid=`ps -aux | grep nanny.pl | awk '{print 2}'`  (would I need 2 in
>  quotes?)

	This command could also catch the PID for the grep, too.  Even 
then, it could still return multiple PIDs.  I would instead suggest:

		$NANNY_PIDS=`ps -aux | egrep 'n[a]nny.pl' | awk '{ print $2}'`
		for PID in $NANNY_PIDS
		do
			kill -9 $PID
		done

-- 
Brad Knowles, <brad.knowles at skynet.be>

/*        efdtt.c  Author:  Charles M. Hannum <root at ihack.net>          */
/*       Represented as 1045 digit prime number by Phil Carmody         */
/*     Prime as DNS cname chain by Roy Arends and Walter Belgers        */
/*                                                                      */
/*     Usage is:  cat title-key scrambled.vob | efdtt >clear.vob        */
/*   where title-key = "153 2 8 105 225" or other similar 5-byte key    */

dig decss.friet.org|perl -ne'if(/^x/){s/[x.]//g;print pack(H124,$_)}'


More information about the bind-users mailing list