zsh-users
 help / color / mirror / code / Atom feed
* A minor syntax question
@ 2016-06-07  6:58 Jesper Nygårds
  2016-06-07 11:54 ` Oliver Kiddle
  0 siblings, 1 reply; 3+ messages in thread
From: Jesper Nygårds @ 2016-06-07  6:58 UTC (permalink / raw)
  To: Zsh Users

[-- Attachment #1: Type: text/plain, Size: 1174 bytes --]

I am writing a function that's basically a wrapper to an invocation of
'find'. I have the need to transform some arguments to my function into an
expression I pass on to 'find'. Here's a simplified example of what I want
to do:

xff() {
    zparseopts -D -E t+:=types || return 1
    typearg="("${"$(print -- '-o -type '${^types:#-t})"#-o }")"
    print $typearg
}

What I want to do is to construct a nested expression for the variable
number of file types that can be given. They should be contained within
parenthesis, and joined by "-o". So, for example:

xff -t f   ->  "(-type f)"
xff -t f -t d   -> "(-type f -o -type d)"

As you can see, my function strips away the '-t' elements, then expands the
parameter list with '-o -type ' before each element, and finally strips
away the leading '-o'. It works as intended, but I feel it is more
complicated than required. In particular, I couldn't find a way to make the
'${^...}' parameter expansion trigger without the embedded print statement.
At the same time, I'm rather happy with having found a one-liner expressing
what I want.

So my question is: is there a more elegant way of solving this which is
still compact?

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-06-07 18:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-07  6:58 A minor syntax question Jesper Nygårds
2016-06-07 11:54 ` Oliver Kiddle
2016-06-07 18:47   ` Jesper Nygårds

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).