From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1443 invoked from network); 27 Jul 2005 07:07:28 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 27 Jul 2005 07:07:28 -0000 Received: (qmail 48138 invoked from network); 27 Jul 2005 07:07:20 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 27 Jul 2005 07:07:20 -0000 Received: (qmail 26290 invoked by alias); 27 Jul 2005 07:07:13 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 9193 Received: (qmail 26280 invoked from network); 27 Jul 2005 07:07:12 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 27 Jul 2005 07:07:12 -0000 Received: (qmail 47120 invoked from network); 27 Jul 2005 07:07:12 -0000 Received: from zproxy.gmail.com (64.233.162.194) by a.mx.sunsite.dk with SMTP; 27 Jul 2005 07:07:08 -0000 Received: by zproxy.gmail.com with SMTP id i11so112685nzh for ; Wed, 27 Jul 2005 00:07:07 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:subject:message-id:reply-to:references:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=Qd3N79TLG/Ai/4q5U+CChsr5R1qUV/go5sYI80vgXnXEK4DU6OK0Z+JfSYr7UVdgOw0elr9i4zfBScMCGHylB4rWcslYsfAJah/ko2bwDFBh0paHrYjLWLVVu+zZcWeF9fjPMDF6SmR7Ixcxh/SGkouCDIBa8AUOMsiJfelBe4o= Received: by 10.36.178.17 with SMTP id a17mr627016nzf; Wed, 27 Jul 2005 00:07:07 -0700 (PDT) Received: from localhost ([61.246.59.212]) by mx.gmail.com with ESMTP id 38sm825487nzk.2005.07.27.00.07.04; Wed, 27 Jul 2005 00:07:07 -0700 (PDT) Date: Wed, 27 Jul 2005 12:49:43 +0530 From: Ligesh To: zsh-users@sunsite.dk Subject: Zsh fails when Globing fails Message-ID: <20050727071943.GA3325@lxlabs.com> Reply-To: gxlists@gmail.com References: <1122445746.19346.ezmlm@sunsite.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1122445746.19346.ezmlm@sunsite.dk> User-Agent: Mutt/1.5.6i X-Spam-Checker-Version: SpamAssassin 3.0.4 (2005-06-05) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=BAYES_00,RCVD_BY_IP autolearn=ham version=3.0.4 I would like to know how to turn off the strict globbing feature in zsh. In bash, if a globbing fails, the shell will simply pass the full string - metacharacters and all - directly to the program. But zsh bails out when globbing fails. So currenlty I have to include all of them in single quotes to make it work. IS there a config option which can get back the bash like behaviour? Thanks in advance.