From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18468 invoked from network); 15 Jan 1998 10:46:57 -0000 Received: from math.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 15 Jan 1998 10:46:57 -0000 Received: (from list@localhost) by math.gatech.edu (8.8.5/8.8.5) id FAA18054; Thu, 15 Jan 1998 05:29:22 -0500 (EST) Resent-Date: Thu, 15 Jan 1998 05:28:05 -0500 (EST) From: Andrew Main Message-Id: <199801151028.KAA21473@taos.demon.co.uk> Subject: Re: I've forgotten again how to do this --> 0-100 To: luomat+zsh+users@luomat.peak.org (Timothy J Luoma) Date: Thu, 15 Jan 1998 10:28:37 +0000 (GMT) Cc: zsh-users@math.gatech.edu In-Reply-To: <199801150012.TAA07173@luomat.peak.org> from "Timothy J Luoma" at Jan 14, 98 07:12:21 pm X-Loop: zefram@tao.co.uk X-Headers: in preparation X-Mailer: ELM [version 2.4 PL25] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Resent-Message-ID: <"TLtTX.0.YP4.qIUlq"@math> Resent-From: zsh-users@math.gatech.edu X-Mailing-List: archive/latest/1230 X-Loop: zsh-users@math.gatech.edu X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu Timothy J Luoma wrote: >for i in 0-100; do > echo $i >done for ((i=0;i<=100;i++)); do echo $i done takes less memory than the brace expansion method. -zefram