From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24350 invoked by alias); 3 Aug 2010 12:40:18 -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: 15228 Received: (qmail 7929 invoked from network); 3 Aug 2010 12:40:15 -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=-0.3 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,T_TO_NO_BRKTS_FREEMAIL,URIBL_BLACK autolearn=no version=3.3.1 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.215.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=XISr0ttURrtRNjN9zCdjYhsnxBtH7XsmuwcFEezQzCg=; b=SqE9x4CxbnFcxpU3tLoMbt4g/MQPVFHLc+bEOCeDoHeQZDOt4wZfAuI/K2DD65R8iP fRndSKV15OF94ZEha4EFmjNoDruLUh+NUFe73DEoDNlr1E0l+go0x8v/Qmum9bsBT9/2 VAs5Qyy9Y+ZbMZ4XUkPxRAj0f8rAlgh7lCxSE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=OozyuSjUqLzpfYbxhLagBimPuokTlhsfy+Sv8lzZDlzuVezICSA/EltO5fL/VgcKws pqlqag38VGxMvjDaRBGbK3oFdIqyxHbGXHIdNTiEbou0wo7aHQj6L6ggdRYUoe2SKC0U r6WMQrfSkkC5nG+z9J0JpETnsVpJUFn4MP6eo= MIME-Version: 1.0 In-Reply-To: References: From: =?ISO-8859-1?Q?J=E9r=E9mie_Roquet?= Date: Tue, 3 Aug 2010 14:39:51 +0200 Message-ID: Subject: Re: Problem with "?" symbol To: zsh-users@zsh.org Cc: Volodya Khomchak Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi, 2010/8/3 Volodya Khomchak : > 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=3D1= 01032 > zsh: no matches found: > https://esx16-bsd05.qa.sbr.ironport.com/atlas/ipcs/?virtual_serial=3D1010= 32 > > This command fails on "?" symbol, do you have any idea why =A0this occurs= ? Yes: "?" is a glob operator meaning "any character", similar to "*" (which means "any sequence of characters"). See "man zshexpn", section "glob operators" for more information. > Also I know that this could be resolved by this: > alias curl=3D"noglob curl" You might prefer escaping the "?" with a backslash: curl -vvv -k https://HOST.COM/page/page2/\?virtual_serial=3D101032 If you like copy-pasting urls in your shell, have a look at the url-quote-magic widget to escape glob operators automatically. Best regards, --=20 J=E9r=E9mie