zsh-users
 help / color / mirror / code / Atom feed
From: Thorsten Kampe <thorsten@thorstenkampe.de>
To: zsh-users@zsh.org
Subject: Re: Catch `setopt nounset`
Date: Fri, 10 Apr 2015 03:11:43 +0200	[thread overview]
Message-ID: <mg780e$fav$1@ger.gmane.org> (raw)
In-Reply-To: <150409114205.ZM25276@torch.brasslantern.com>

* Bart Schaefer (Thu, 9 Apr 2015 11:42:05 -0700)
> 
> On Apr 9,  6:30pm, Thorsten Kampe wrote:
> } 
> } I'd to catch the call of a parameter that does not exist with `setopt 
> } nounset`.
> 
>     setopt nounset
>     {
>       print "$DOESNOTEXIST"
>     } always {
>       if (( TRY_BLOCK_ERROR ))
>       then print "error"
>       else print "no error"
>       fi
>     }
> 
> } If I replace the `catch` statement with `if result=$(testfunc)` it 
> } prints "error". What am I missing here? Why does the latter work but 
> } not the former?
> 
> "parameter not set" is a fatal error, so whatever the current shell is
> doing is stopped when that happens.  $(testfunc) is run in a subshell,
> so the current shell proceeds even though the subshell died.

Interesting explanation about the fatal error, subshell and an 
interesting solution as well.

Unfortunately, the code should run in bash and zsh if possible, so I 
went for `printf "$DOESNOTEXIST="` which catches the "`unbound 
variable`/`parameter not set`" fatal error but still generates a 
normal error because of the printf.

Of course the `always` solution is more general, more readable, and 
superior.

Thorsten


      reply	other threads:[~2015-04-10  1:12 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-09 16:30 Thorsten Kampe
2015-04-09 18:42 ` Bart Schaefer
2015-04-10  1:11   ` Thorsten Kampe [this message]

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='mg780e$fav$1@ger.gmane.org' \
    --to=thorsten@thorstenkampe.de \
    --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).