zsh-workers
 help / color / mirror / code / Atom feed
From: Aryn Starr <whereislelouch@icloud.com>
To: zsh-workers@zsh.org
Subject: Possible :q quoting bug
Date: Thu, 8 Aug 2019 20:36:00 +0430	[thread overview]
Message-ID: <5E224043-AA93-4B39-94BB-6230A9A2737F@icloud.com> (raw)

Hi,
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
}
```

             reply	other threads:[~2019-08-08 20:18 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-08 16:06 Aryn Starr [this message]
2019-08-08 21:37 ` Bart Schaefer
2019-08-08 21:48 ` Stephane Chazelas
2019-08-09 11:00   ` Aryn Starr

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=5E224043-AA93-4B39-94BB-6230A9A2737F@icloud.com \
    --to=whereislelouch@icloud.com \
    --cc=zsh-workers@zsh.org \
    /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).