From owner-freebsd-stable Mon Jul 2 10: 6:21 2001 Delivered-To: freebsd-stable@freebsd.org Received: from balrog.malfunktion.net (dsl081-039-038.lax1.dsl.speakeasy.net [64.81.39.38]) by hub.freebsd.org (Postfix) with ESMTP id 9B68437B401 for ; Mon, 2 Jul 2001 10:06:18 -0700 (PDT) (envelope-from zgh+bsd@malfunktion.net) Received: from nidhogg (balrog [64.81.39.38]) by balrog.malfunktion.net (Postfix) with SMTP id AF1302AA26; Mon, 2 Jul 2001 10:07:29 -0700 (PDT) Received: (nullmailer pid 1054 invoked by uid 1001); Sat, 16 Jun 2001 06:25:18 -0000 Date: Fri, 15 Jun 2001 23:25:18 -0700 From: Zack Hobson To: Donn Miller Cc: freebsd-stable@freebsd.org Subject: Re: Benchmarking CVSup Message-ID: <20010615232518.C789@nidhogg.malfunktion.net> References: <20010616060538.69356.qmail@web14707.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i 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 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 On Fri, Jun 15, 2001 at 11:05:38PM -0700, Donn Miller wrote: > --- Chris BeHanna 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. > > Actually, it should go from 1->16. A more compact way to do it would > be: Try piping it to tail, that compresses the output nicely: #!/bin/sh i=1 while [ $i -le 16 ] ; do traceroute cvsup$i.freebsd.org|tail -n 1 i=`expr $i + 1` done This gives you a nice two-line summary of each traceroute, at least it did on my 4.3-STABLE server. -zack To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message