From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11928 invoked by alias); 17 Mar 2013 16:51: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: 17709 Received: (qmail 28670 invoked from network); 17 Mar 2013 16:51:06 -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=-1.6 required=5.0 tests=BAYES_00,DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED,RCVD_IN_DNSWL_LOW, T_DKIM_INVALID autolearn=no version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.212.180 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:cc:content-type:content-transfer-encoding; bh=/HjJby6xtx7k/IGvXA17m+hzrZP0w7WYq+woLJ5CXVI=; b=GgDTOJYHUczglENSSzreYkLGKacp1w1mHNChVzvOotHlhu1RvLW9yOnBJZZCBppOUB jH85ktNokWzFs+58zchqdshGONJ+wHUn9/MoQdq2lYv9Ld1KB4qnu0inlRECpTOQbmiX Wb7jm/WKSYscegfvv4sEuTpgL2CijG20bHdkQgNArglnnJsVOg5OWmrlvn5l7rfjCB/7 FVuu0Tj67BI+D08Hjc6YxnJoU/qkpsll7gt3NSGaiD9Vr2ns77zRaRzfysHfXOPwgHyO O0YHEUaAglQWzWAVTqtD+rLPSEo3d45lkOSaZYcS2gh7zv36tDmVbGWPiMhcfNaPbcNe 9+XQ== X-Received: by 10.194.158.161 with SMTP id wv1mr20252366wjb.38.1363537262475; Sun, 17 Mar 2013 09:21:02 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <1363536224.75338.YahooMailNeo@web140003.mail.bf1.yahoo.com> References: <1363536224.75338.YahooMailNeo@web140003.mail.bf1.yahoo.com> From: =?UTF-8?B?SsOpcsOpbWllIFJvcXVldA==?= Date: Sun, 17 Mar 2013 17:20:47 +0100 Message-ID: Subject: Re: problem with zsh and wildcards in scp commands To: John Cc: "zsh-users@zsh.org" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Hi, 2013/3/17 John : > Thank you. Can zsh be modified easily in a config file to behave as bash = with scp? unsetopt nomatch I wouldn't advice to use this, however, as it still wouldn't do what you expect it to do if the expansion is possible locally. You should rather use something like =E2=80=9Cnoglob scp facade@gogo:~/*.xz .=E2=80=9D, which prevents local expansion. Best regards, --=20 J=C3=A9r=C3=A9mie