zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: zsh-users@sunsite.dk
Subject: Re: array not working
Date: Sun, 26 Nov 2006 10:12:50 -0800	[thread overview]
Message-ID: <061126101250.ZM25808@torch.brasslantern.com> (raw)
In-Reply-To: <Xns98878329CBD7Ezzappergmailcom@80.91.229.5>

On Nov 26, 12:53pm, zzapper wrote:
} Subject: Re: array not working
}
} zzapper <david@tvis.co.uk> wrote in
} news:Xns98877CBF8A380zzappergmailcom@80.91.229.5: 
} 
} > Hi a previously working zsh script

Are you running this stand-alone or is it loaded as a shell function?

Did you update any any other part of Cygwin recently?

} > someurl=(database login password filename)
} > 
} > "$mysqldump" $param -h $server -u${someurl[1]} -p$someurl[2] -B
} > ${someurl [0]} > ${someurl[3]}.sql

I'm going to assume the space before [0] is a line wrapping artifact.

} > What is happening is that ${someurl[1]} $someurl[2] ${someurl[0]}
} > are all evaulating to the same value (first element in array)

Quite frankly I'm not sure how this ever worked.  With the ksh_arrays
option NOT set, ${someurl[1]} and ${someurl[0]} should always have been
the same value, and WITH ksh_arrays set, $someurl[2] is the same as
${someurl}[2] which would be interpreted as a file pattern (and either
error with "no match" or result in one of "database[2]" or nothing,
depending on the nomatch and nullglob options).

There is no case I know of where [[ ${someurl[1]} == $someurl[2] ]]
would be true, given the shown starting state of the array.

} > what daft thing am i doing?

I can't think of any combination of setopts that would produce your
desired effect with that assortment of subscripting and braces.

} Started new shell and problem went away, but arrays now seem to be
} indexed from 1 rather than zero?? 
} 
} Did this change recently?

As Nikolai said, no, it did not.  Aside from the impossible scripting
above, could it be that someone has changed something in a startup file?
Perhaps in the Cygwin equivalent of /etc/zshenv or similar?


      parent reply	other threads:[~2006-11-26 18:40 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-11-26 12:15 zzapper
2006-11-26 12:53 ` zzapper
2006-11-26 13:35   ` Nikolai Weibull
2006-11-26 17:56     ` zzapper
2006-11-26 18:12   ` Bart Schaefer [this message]

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=061126101250.ZM25808@torch.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --cc=zsh-users@sunsite.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).