From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22503 invoked from network); 3 Nov 1997 17:40:06 -0000 Received: from math.gatech.edu (list@130.207.146.50) by ns1.primenet.com.au with SMTP; 3 Nov 1997 17:40:06 -0000 Received: (from list@localhost) by math.gatech.edu (8.8.5/8.8.5) id MAA28010; Mon, 3 Nov 1997 12:23:08 -0500 (EST) Resent-Date: Mon, 3 Nov 1997 12:20:16 -0500 (EST) Message-Id: <199711031720.MAA27902@math.gatech.edu> To: zsh-users@math.gatech.edu Subject: Re: for-command problem In-reply-to: Your message of "Mon, 03 Nov 1997 16:14:10." <01BCE873.ACAF8B80@nt15.uitesa.es> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 03 Nov 1997 15:56:39 +0000 From: Bruce Stephens Resent-Message-ID: <"T_i0n.0.Gq6.FVWNq"@math> Resent-From: zsh-users@math.gatech.edu X-Mailing-List: archive/latest/1122 X-Loop: zsh-users@math.gatech.edu X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu agn@uitesa.es said: > for ((let n=1; $n < 12 ; let n=$n+1)) > do > echo $n > done This works: for ((n=1; $n<12; n=$n+1)) do echo $n done