Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
`[[ -n $VAR ]]` equal to `[[ $VAR ]]`?
- X-seq: zsh-users 20118
- From: Thorsten Kampe <thorsten@xxxxxxxxxxxxxxxx>
- To: zsh-users@xxxxxxx
- Subject: `[[ -n $VAR ]]` equal to `[[ $VAR ]]`?
- Date: Fri, 10 Apr 2015 03:23:29 +0200
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
Hi,
this is kind of a follow-up to
http://www.zsh.org/mla/users/2011/msg00284.html .
Basically the solutions were `((+VAR))` for zsh and `[[ -n
${VAR+stuff} ]]` for bash and zsh.
Now my question is, isn't `[[ -n $VAR ]]` equivalent to `[[ $VAR ]]`?
(`[[ -n ${VAR+stuff} ]]` equivalent to `[[ ${VAR+stuff} ]]`)
Thorsten
Messages sorted by:
Reverse Date,
Date,
Thread,
Author