From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 785 invoked by alias); 10 Apr 2015 01:24:02 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 20118 Received: (qmail 1795 invoked from network); 10 Apr 2015 01:23:50 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW, SPF_HELO_PASS autolearn=ham version=3.3.2 X-Injected-Via-Gmane: http://gmane.org/ To: zsh-users@zsh.org From: Thorsten Kampe Subject: `[[ -n $VAR ]]` equal to `[[ $VAR ]]`? Date: Fri, 10 Apr 2015 03:23:29 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: p5de5aada.dip0.t-ipconnect.de User-Agent: MicroPlanet-Gravity/3.0.4 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