From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6174 invoked from network); 15 Jan 1998 01:01:47 -0000 Received: from math.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 15 Jan 1998 01:01:47 -0000 Received: (from list@localhost) by math.gatech.edu (8.8.5/8.8.5) id TAA11820; Wed, 14 Jan 1998 19:45:59 -0500 (EST) Resent-Date: Wed, 14 Jan 1998 19:45:25 -0500 (EST) Message-ID: <19980114194653.57943@lorien.princeton.edu> Date: Wed, 14 Jan 1998 19:46:53 -0500 From: Danek Duvall To: zsh-users@math.gatech.edu Subject: Re: I've forgotten again how to do this --> 0-100 References: <199801150012.TAA07173@luomat.peak.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: <199801150012.TAA07173@luomat.peak.org>; from Timothy J Luoma on Wed, Jan 14, 1998 at 07:12:21PM -0500 Resent-Message-ID: <"xAv8b1.0.1u2.amLlq"@math> Resent-From: zsh-users@math.gatech.edu X-Mailing-List: archive/latest/1228 X-Loop: zsh-users@math.gatech.edu X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu > if I want to make a loop to go from 0 to 100, how do I do that? > > for i in 0-100; do > echo $i > done for i in {0..100}; do echo $i done > ps -- what is this actually called, so I can possibly find it in the man pages ? brace expansion, I believe. Danek