From owner-freebsd-stable Thu Jan 10 15:43:51 2002 Delivered-To: freebsd-stable@freebsd.org Received: from pi.yip.org (pi.yip.org [199.45.111.121]) by hub.freebsd.org (Postfix) with ESMTP id B3C4D37B416; Thu, 10 Jan 2002 15:43:20 -0800 (PST) Received: (from melange@localhost) by pi.yip.org (8.11.3/8.11.3) id g0ANhGO63901; Thu, 10 Jan 2002 18:43:16 -0500 (EST) (envelope-from melange@yip.org) Date: Thu, 10 Jan 2002 18:43:16 -0500 From: Bob K To: AL Grant Cc: stable@FreeBSD.ORG, qa@FreeBSD.ORG Subject: Re: New cdboot ISO available Message-ID: <20020110184316.X65270@yip.org> References: <3C3E1167.5080302@runbox.com> <20020110232119.B9994@FreeBSD.org> <3C3E22A0.7000708@runbox.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C3E22A0.7000708@runbox.com>; from agrant@runbox.com on Thu, Jan 10, 2002 at 05:24:16PM -0600 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 Thu, Jan 10, 2002 at 05:24:16PM -0600, AL Grant wrote: > I am trying again direct from the link posted to the list. How about when you try it like this? fetch -a -R -r -w 75 -T 90 \ ftp://releng4.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/4.5-RC1-cdboot.iso OT: I made a small, dumb tcsh script for this sort of thing. You stick URLs in $HOME/.leech.urls, make a directory (or symlink) called $HOME/leeched , run the script, and forget about it. It records what it's downloaded so far in $HOME/.leeched.urls. Just looking at it now, I see a bunch of potential improvements, but hey, it works... #!/bin/tcsh -f foreach sucker ( `cat $HOME/.leech.urls` ) echo $$ > $HOME/leech.pid set sucked = 0 while ($sucked != 1) set sucked = 0 cd $HOME/leeched && fetch -a -R -r -w 75 -T 90 "$sucker" \ && set sucked = 1 \ && echo "$sucker leeched.">>$HOME/.leeched.urls end end -- Bob | It's not how big your .sig is; it's how you use it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message