Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Jun 2001 00:05:23 -0700
From:      Eugene Lee <eugene@anime.net>
To:        FreeBSD-Stable <stable@FreeBSD.ORG>
Subject:   Re: Benchmarking CVSup
Message-ID:  <20010616000523.A6642@anime.net>
In-Reply-To: <20010616060538.69356.qmail@web14707.mail.yahoo.com>; from hackr_d@yahoo.com on Fri, Jun 15, 2001 at 11:05:38PM -0700
References:  <Pine.BSF.4.32.0106160119500.88179-100000@topperwein.dyndns.org> <20010616060538.69356.qmail@web14707.mail.yahoo.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, Jun 15, 2001 at 11:05:38PM -0700, Donn Miller wrote:
: 
: 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

I prefer jot.  :)

	for i in `jot 16`
	do
		traceroute -n cvsup${i}.freebsd.org
	done


-- 
Eugene Lee
eugene@anime.net

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?20010616000523.A6642>