zsh-users
 help / color / mirror / code / Atom feed
From: Sweth Chandramouli <sweth@gwu.edu>
To: zsh-users@sunsite.auc.dk
Subject: Re: evaluating a condition
Date: Mon, 13 Sep 1999 12:35:28 -0400	[thread overview]
Message-ID: <19990913123528.A14510@cj952583-b.alex1.va.home.com> (raw)
In-Reply-To: <990912235140.ZM23741@candle.brasslantern.com>

On Sun, Sep 12, 1999 at 11:51:39PM +0000, Bart Schaefer wrote:
> On Sep 12,  8:41pm, Gaspar Bakos wrote:
> } Subject: evaluating a condition
> }
> } I have the following script, and I would like to print the numbers in the
> } terminal from ${min} to ${max}, if both of them are smaller than 10.
> 
> At first I thought you'd found a bug in the math parser, but:
> 
> } export min=$3;export max=$4;
> }         if (($[min]<10 && $[max]<10)) then
>                            ^^
> There's a metafied space here.  I think zsh is interpreting "\240$[max]" as
> an identifier; e.g. if max=11, the identifier name is "\240\061\061".  That
> identifier isn't defined, so it's value is 0 which is always < 10.
	??? what?

	((...)), at least according to the docs (and as implemented in ksh)
is just another syntax for `let '...''.  all the "metafying" (actually, 
quoting is unmetafying) does is prevent the shell from interpreting the 
space as a word separator; once the string to be evaluated is passed to let,
the space is a space again, and let _should_ (and does, in 3.1.6) simply
ignore it, such that the entire block of code does work.

> } 	        for i in {${min}..${max}}; do echo $i; done
> }         fi
> 
> This is a danger of permitting identifiers to contain non-ascii characters.
	??? okay, what did you do to bart?  :)
	i assume you meant non-printable and not non-ascii here, though 
technically a space is still printable.

	one related question that i've long wondered but never about cared 
enough to ask: is there a difference between the $[...] and ${...} notations?

	-- sweth.

-- 
Sweth Chandramouli ; <sweth@gwu.edu>
<a href="http://astaroth.nit.gwu.edu/resume/">Will Work For Food.</a>
<a href="http://astaroth.nit.gwu.edu/~sweth/disc.html">*</a>


  reply	other threads:[~1999-09-13 16:36 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1999-09-12 18:41 Gaspar Bakos
1999-09-12 23:51 ` Bart Schaefer
1999-09-13 16:35   ` Sweth Chandramouli [this message]
1999-09-13 17:22     ` Bart Schaefer
1999-09-13  7:20 ` Johannes Mähner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=19990913123528.A14510@cj952583-b.alex1.va.home.com \
    --to=sweth@gwu.edu \
    --cc=zsh-users@sunsite.auc.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).