Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: I've forgotten again how to do this --> 0-100
- X-seq: zsh-users 1230
- From: Andrew Main <zefram@xxxxxxxxx>
- To: luomat+zsh+users@xxxxxxxxxxxxxxx (Timothy J Luoma)
- Subject: Re: I've forgotten again how to do this --> 0-100
- Date: Thu, 15 Jan 1998 10:28:37 +0000 (GMT)
- Cc: zsh-users@xxxxxxxxxxxxxxx
- In-reply-to: <199801150012.TAA07173@xxxxxxxxxxxxxxx> from "Timothy J Luoma" at Jan 14, 98 07:12:21 pm
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
Messages sorted by:
Reverse Date,
Date,
Thread,
Author