Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Possible :q quoting bug
- X-seq: zsh-workers 44645
- From: Stephane Chazelas <stephane.chazelas@xxxxxxxxx>
- To: Aryn Starr <whereislelouch@xxxxxxxxxx>
- Subject: Re: Possible :q quoting bug
- Date: Thu, 8 Aug 2019 22:48:18 +0100
- Cc: zsh-workers@xxxxxxx
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:cc:subject:message-id:mail-followup-to:references :mime-version:content-disposition:content-transfer-encoding :in-reply-to:user-agent; bh=/wyxWgQ6emHwyBsW+bPDbTe7R+8SqOeErDawFHXqZ4Y=; b=uJNVgQO8tXW268dpsmMZ2J6KkCJ8/cs6lkQl87H5uFev20xh/re1QYBODNJ+bjfi+W Nwa51PISDzCgL9FPjmrIELGoMhn1aJgqgZw8zhNX1ghhlAi0ryxwlozK0oPmXMYNuoqv PxY87vR9Nuih4foh23QnhF3PGpv2aozvvZgeKxhsG4djf4B9FG93UMy8UtWuJv+AGX7O J55hkadj0CNHYrtjcxF4kX46+B7BjdlD7g6EfOg1YbnI/3LYgOKwqSb8sOlkomy/WUJ0 G62yq9icWUiqFbs8zX8KG9BFDgNdwt+9X7tGwD0zjJaUHi5GCTSq8mgqaBu9Gm9YIi2U ZJyA==
- In-reply-to: <5E224043-AA93-4B39-94BB-6230A9A2737F@icloud.com>
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- List-unsubscribe: <mailto:zsh-workers-unsubscribe@zsh.org>
- Mail-followup-to: Aryn Starr <whereislelouch@xxxxxxxxxx>, zsh-workers@xxxxxxx
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
- References: <5E224043-AA93-4B39-94BB-6230A9A2737F@icloud.com>
2019-08-08 20:36:00 +0430, Aryn Starr:
> I expect this function to be idempotent on the command line:
> ```
> Function reveal() {
> eval “${@:q}”
> }
> ```
> But it’s not. It loses empty args.
> I have written the following function to fix this ‘bug’:
> ```
> gquote () {
> local i
> for i in "$@"
> do
> test -z "$i" && print -rn "''" " " || print -rn -- "${i:q}" " "
> done
> }
> ```
You may want to use:
reveal() eval "${(qq)@}"
which is the zsh way to do it.
$var:q is reminiscent of tcsh's $var:q though works differently
(in tcsh, you do need cmd $var:q to pass the content of $var
literally to cmd as tcsh has a completly fucked-up way of
handling parameter expansions (hardly improved from the Thompson
shell's simplistic parameter expansion from the early 70s).
But like zsh's, tcsh's $var:q expands to nothing when $var is
empty or a list of empty elements.
Of the various ${(q)var}, ${(qq)var}, ${(qqq)var}, ${(qqqq)var}
${(q+)var}..., ${(qq)var} is the only one that is
localisation-safe as it always using single quotes. The other
ones (and also the quoting operators of other shells or of
various printf %q) are generally not safe as they may quote some
characters with \ (or use things like $'\n') and the encoding of
\ is found in the encoding of some multi-byte characters in some
locales.
Note that mksh added a ${var@Q} which was later copied by bash.
Initially, ${empty@Q} expanded to nothing (and it still does in
bash), but that changed at some point in mksh where it now
expands to ''. (possibly bash will follow).
I'd agree zsh's documentation is misleading though as it
currently says:
q
Quote the substituted words, escaping further substitutions. Works
with history expansion and parameter expansion, though for
parameters it is only useful if the resulting text is to be
re-evaluated such as by eval.
--
Stephane
Messages sorted by:
Reverse Date,
Date,
Thread,
Author