Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: scp and globbing in zsh
- X-seq: zsh-users 7738
- From: Peter Stephenson <pws@xxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Re: scp and globbing in zsh
- Date: Fri, 23 Jul 2004 18:05:06 +0100
- In-reply-to: "matt m"'s message of "Fri, 23 Jul 2004 12:48:35 EDT." <23e98abb04072309486560f63e@xxxxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
matt m wrote:
> $ scp someserver:~/tmp/*.txt .
> $ scp *.txt someserver:~/tmp/
>
> The first one fails with globbing because it seems to be looking for
> ~/tmp/*.txt on my local machine instead of the remote machine but the
> second command works fine.
Zsh is set by default to report an error when any pattern match fails.
You probably want to pass through any unrecognised patterns to the
command. You can do that with:
setopt nonomatch
--
Peter Stephenson <pws@xxxxxxx> Software Engineer
CSR Ltd., Science Park, Milton Road,
Cambridge, CB4 0WH, UK Tel: +44 (0)1223 692070
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.
www.mimesweeper.com
**********************************************************************
Messages sorted by:
Reverse Date,
Date,
Thread,
Author