Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Parameter expansion only to existing filenames
- X-seq: zsh-users 6340
- From: Vin Shelton <shelton@xxxxxxxxxxxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Parameter expansion only to existing filenames
- Date: Wed, 02 Jul 2003 13:18:55 -0400
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- Organization: Teradyne, Inc
I was recently re-reading the Zsh User Guide (Thanks, Peter!!) and I
started a few experiments. One need I have that is as yet unfulfilled
is to combine a list of directories and list of files such that only
the ones which exist get listed. Here's what I mean:
zsh -f
denver% echo $ZSH_VERSION
4.1.1
denver% mkdir a b c
denver% touch a/x b/y c/z
denver% dirs=(a b c)
denver% files=(x y z)
denver% print $^dirs/$^files
a/x a/y a/z b/x b/y b/z c/x c/y c/z
What I'd like to generate is:
a/x b/y c/z
GLOB_SUBST doesn't help:
denver% print $^~dirs/$~^files
a/x a/y a/z b/x b/y b/z c/x c/y c/z
Is this because there's are no patterns to glob?
Is there a clever way to generate the list I want?
Thanks in advance,
Vin
Messages sorted by:
Reverse Date,
Date,
Thread,
Author