Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
noglob and setting variables
- X-seq: zsh-workers 7357
- From: "Owen M. Astley" <oma1000@xxxxxxxxx>
- To: zsh-workers@xxxxxxxxxxxxxx
- Subject: noglob and setting variables
- Date: Wed, 4 Aug 1999 19:01:36 +0100 (BST)
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
Is this a bug or a feature?
In a directory with 32 files...
alpha3-~% a=(*)
alpha3-~% echo $#a
32
alpha3-~% noglob a=(*)
zsh: command not found: a=(*)
alpha3-~% noglob set -A a *
alpha3-~% echo $#a
1
So assignment using '=' doesn't appear to be a command. What is it
then?
This is on zsh-3.0.5.
Owen
Messages sorted by:
Reverse Date,
Date,
Thread,
Author