[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: wget
On Mon, May 09, 2005 at 01:09:28PM -0500, Steven Pritchard wrote:
> n=1; while [ $n -le 10 ]; do wget http://soso.fake.com/file$n.ext ; done
Oops. Make that
n=1;while [ $n -le 10 ];do wget http://soso.fake.com/file$n.ext;((n++));done
Otherwise, can you say infinite loop? :-}
Steve
--
steve@silug.org | Southern Illinois Linux Users Group
(618)398-3000 | See web site for meeting details.
Steven Pritchard | http://www.silug.org/
-
To unsubscribe, send email to majordomo@silug.org with
"unsubscribe silug-discuss" in the body.
- Follow-Ups:
- Re: wget
- From: Robert Citek <rwcitek@alum.calberkeley.org>
- References:
- wget
- From: bentley rhodes <bntly.rhds@gmail.com>
- Re: wget
- From: Steven Pritchard <steve@silug.org>