Mail Archives: cygwin/2005/08/19/15:18:32
On Fri, 19 Aug 2005, Poor Yorick wrote:
> from reading the bash man pages, I would have thought the -n and -z were
> mutually exclusive. Therefore I don't understand this result:
>
> ~>$ [ -n $(which nonexisingfilename 2>/dev/null) ] && [ -z $(which nonexistingfilename 2&>/dev/null) ] && echo hello
> hello
> ~>$
>
> can anyone help explain this?
I think when -n and -z aren't given a parameter, the results are
unspecified. You need to quote the output of $(which...):
$ [ -n "$(which nonexisingfilename 2>/dev/null)" ] && [ -z "$(which nonexistingfilename 2&>/dev/null)" ] && echo hello
$
HTH,
Igor
--
http://cs.nyu.edu/~pechtcha/
|\ _,,,---,,_ pechtcha AT cs DOT nyu DOT edu
ZZZzz /,`.-'`' -. ;-;;,_ igor AT watson DOT ibm DOT com
|,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski, Ph.D.
'---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow!
If there's any real truth it's that the entire multidimensional infinity
of the Universe is almost certainly being run by a bunch of maniacs. /DA
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
- Raw text -