zsh-users
 help / color / mirror / code / Atom feed
From: Peng Yu <pengyu.ut@gmail.com>
To: zsh-users <zsh-users@zsh.org>
Subject: How to yield an error with zparseopts when non-matching options are seen?
Date: Sun, 2 Dec 2018 16:28:29 -0600	[thread overview]
Message-ID: <CABrM6wkV7yi=5OrwW6JnFSuLMdX0xeryL0VF3fP5YpWGEXHvUA@mail.gmail.com> (raw)

In the following example, -b has not been defined as an option, but
`zparseopts` return successfully. Is there a way to let it yield an
error when it sees such a case?

$  ./main.sh
set -- -b -a x -a y
zparseopts -D a:=bar
echo $?
0
declare -p bar
typeset -a bar=(  )
declare -p argv
typeset -a argv=( -b -a x -a y )

set -- -b -a x -a y
zparseopts -D -E a:=bar
declare -p bar
typeset -a bar=( -a y )
declare -p argv
typeset -a argv=( -b )
$ cat ./main.sh
#!/usr/bin/env zsh
# vim: set noexpandtab tabstop=2:

set -v
set -- -b -a x -a y
zparseopts -D a:=bar
echo $?
declare -p bar
declare -p argv

set -- -b -a x -a y
zparseopts -D -E a:=bar
declare -p bar
declare -p argv

-- 
Regards,
Peng

             reply	other threads:[~2018-12-02 22:28 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-02 22:28 Peng Yu [this message]
2018-12-03  0:13 ` dana
2018-12-03  0:44   ` dana

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='CABrM6wkV7yi=5OrwW6JnFSuLMdX0xeryL0VF3fP5YpWGEXHvUA@mail.gmail.com' \
    --to=pengyu.ut@gmail.com \
    --cc=zsh-users@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).