From owner-freebsd-stable Fri Jun 15 23: 5:48 2001 Delivered-To: freebsd-stable@freebsd.org Received: from web14707.mail.yahoo.com (web14707.mail.yahoo.com [216.136.224.124]) by hub.freebsd.org (Postfix) with SMTP id 6686B37B401 for ; Fri, 15 Jun 2001 23:05:38 -0700 (PDT) (envelope-from hackr_d@yahoo.com) Message-ID: <20010616060538.69356.qmail@web14707.mail.yahoo.com> Received: from [63.67.120.228] by web14707.mail.yahoo.com; Fri, 15 Jun 2001 23:05:38 PDT Date: Fri, 15 Jun 2001 23:05:38 -0700 (PDT) From: Donn Miller Subject: Re: Benchmarking CVSup To: Chris BeHanna , FreeBSD-Stable In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --- Chris BeHanna wrote: > On Fri, 15 Jun 2001, Jens Haeusser wrote: > Here's a little script to work through them all. With a modicum of > effort, it could be made to just print the hopcounts, but I wasn't > that enthusiastic the night I wrote it. > > #!/bin/sh > > for i in 1 2 3 4 5 6 7 8 9 10 11 Actually, it should go from 1->16. A more compact way to do it would be: i=0 while [ $i -le 16 ] ; do # traceroute cvsup$i.freebsd.org i=`expr $i + 1` done Thank god for Cygwin, or I wouldn't be able to test this. 8-( __________________________________________________ Do You Yahoo!? Spot the hottest trends in music, movies, and more. http://buzz.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message