Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Jun 2001 23:05:38 -0700 (PDT)
From:      Donn Miller <hackr_d@yahoo.com>
To:        Chris BeHanna <behanna@zbzoom.net>, FreeBSD-Stable <stable@freebsd.org>
Subject:   Re: Benchmarking CVSup
Message-ID:  <20010616060538.69356.qmail@web14707.mail.yahoo.com>
In-Reply-To: <Pine.BSF.4.32.0106160119500.88179-100000@topperwein.dyndns.org>

next in thread | previous in thread | raw e-mail | index | archive | help

--- Chris BeHanna <behanna@zbzoom.net> 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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20010616060538.69356.qmail>