From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28271 invoked by alias); 8 Aug 2010 12:17:45 -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: 15255 Received: (qmail 26155 invoked from network); 8 Aug 2010 12:17:42 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,KHOP_SC_TOP_CIDR8,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.215.43 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:content-type:subject:from:to :in-reply-to:references:date:message-id:user-agent :content-transfer-encoding; bh=51XYTuTWiEeiS77qUrz/zwI3nDQccLK+pOwfEk4kWZQ=; b=XVAa6KUWvfi7unJKUP52u4OAw4w7j2QwHGi4ml5VwstuFzt+3wAIAVDjr4BLJszoZB DPYQCOCNQCDl28Os3aLmuf3xGJP942JGmmrAv/YKCZ9KhhE3vZpZJgQJ4pD3GSkV4GLR 0hBRJXWVcPqsllv5NAidVNJYUjSM7YKyGncds= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=content-type:subject:from:to:in-reply-to:references:date:message-id :user-agent:content-transfer-encoding; b=rLuE8jg0jKxrvWYkPU5i/2peO8v9QVuafa3ra7DS+5y2BTW9+n46cnZ+d6Kj8Ot4SR /nJUrdFlcyjtTFU/GtGV6r1K/zD6dSKE3WyAO4IoJwKXMYnjsEDvwYlX8vA2QwF5ZKw/ Vmp0aLKjJbrFqTNWvD+3aiUVxjcqHQYcOewA8= Content-Type: text/plain; charset=UTF-8 Subject: Re: Problem with "?" symbol From: Bryan Hunt To: zsh-users In-reply-to: References: Date: Sun, 08 Aug 2010 13:10:45 +0100 Message-Id: <1281269296-sup-4472@linuxacer> User-Agent: Sup/0.11 Content-Transfer-Encoding: 8bit URL Stuff causes problems in umpteen scenarios/shells. A much simpler solution is to just always quote URL's, i.e. curl -vvv -k "https://HOST.COM/page/page2/?virtual_serial=101032" Simple, end of problem, do the same thing with SMB filenames too, while you're at it. Bryan Excerpts from Volodya Khomchak's message of Tue Aug 03 13:26:30 +0100 2010: > Hi Folks, > > I faced with next issue in zsh. I'm new with this and don't have any > idea why this occurs. > So the problem is next: > > [kolombo:~]> curl -vvv -k https://HOST.COM/page/page2/?virtual_serial=101032 > zsh: no matches found: > https://esx16-bsd05.qa.sbr.ironport.com/atlas/ipcs/?virtual_serial=101032 > > This command fails on "?" symbol, do you have any idea why this occurs ? > > Also I know that this could be resolved by this: > alias curl="noglob curl" > > > Cheers, > Volodya -- --