zsh-users
 help / color / mirror / code / Atom feed
From: Kurtis Rader <krader@skepticism.us>
To: Mikael Magnusson <mikachu@gmail.com>
Cc: Thorsten Kampe <thorsten@thorstenkampe.de>,
	Zsh Users <zsh-users@zsh.org>
Subject: Re: `[[ -n $VAR ]]` equal to `[[ $VAR ]]`?
Date: Thu, 9 Apr 2015 20:21:50 -0700	[thread overview]
Message-ID: <CABx2=D_4Aw4W9AsBNa5o1houzAipLFDBtt82BnVq0CEyNshSUA@mail.gmail.com> (raw)
In-Reply-To: <CAHYJk3Qj6W=VZ26si0VjhsmS1u9go6mVGpXjDSTLk5knKaEtOg@mail.gmail.com>

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

On Thu, Apr 9, 2015 at 7:46 PM, Mikael Magnusson <mikachu@gmail.com> wrote:

> If you mean ambiguity because VAR might be the string "-z" for
> example, there is no such ambiguity. The syntax of [[ ... ]] is fully
> parsed before any substitutions inside are made (I think, but it's at
> least true for this purpose). (This is unlike [ ... ] which is not
> syntax but a shell builtin that gets passed arguments after they're
> substituted, globbed, expanded and etc).
>

Your last statement is only partially true. It is true that most modern
shells implement the single bracket form as a builtin (the double bracket
form has always been a builtin in ksh, zsh, etc.). However, historically
the "[" command was simply an alias (usually a file system hard-link) for
/bin/test. The original Bourne shell simply executed that external command
and checked its exit status. Check your /bin or /usr/bin directory and
you'll likely see a file named "[" (although it may not be a link to
/bin/test these days). The fact the "[" was historically an external
command is why you have to jump through hoops to quote variable expansions
and use tricks like

if [ "${var}x" = x ]; then

so that if $var was unset or the empty string you still had a valid
expression.

-- 
Kurtis Rader
Caretaker of the exceptional canines Junior and Hank

  parent reply	other threads:[~2015-04-10  3:21 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-10  1:23 Thorsten Kampe
2015-04-10  1:31 ` Kurtis Rader
2015-04-10  1:39   ` Thorsten Kampe
2015-04-10  2:02     ` Kurtis Rader
2015-04-10  2:05       ` Kurtis Rader
2015-04-10  2:46         ` Mikael Magnusson
2015-04-10  2:59           ` Kurtis Rader
2015-04-10  4:00             ` Mikael Magnusson
2015-04-10  6:06             ` Thorsten Kampe
2015-04-13 16:52               ` Ray Andrews
2015-04-13 17:36                 ` Roman Neuhauser
2015-04-13 23:58                   ` Ray Andrews
2015-04-14  1:27                     ` Bart Schaefer
2015-04-14 15:06                       ` Ray Andrews
2015-04-10  3:21           ` Kurtis Rader [this message]
2015-04-10  2:01 ` Bart Schaefer

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='CABx2=D_4Aw4W9AsBNa5o1houzAipLFDBtt82BnVq0CEyNshSUA@mail.gmail.com' \
    --to=krader@skepticism.us \
    --cc=mikachu@gmail.com \
    --cc=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).