Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Brace Expansion
- X-seq: zsh-users 7395
- From: Peter Stephenson <pws@xxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Re: Brace Expansion
- Date: Fri, 23 Apr 2004 15:00:43 +0100
- In-reply-to: "zzapper"'s message of "Fri, 23 Apr 2004 14:15:04 BST." <9f5i80hlg5kolhbm1behb316pe0jda0qvh@xxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
zzapper wrote:
> > ls -l *.{cfm,htm,html}
>
> >\ls -t *.{html,cfm,htm}
> zsh: no matches found: *.htm
The correct way to do this is
ls -l *.(cfm|htm|html)
Then you'll only get `no matches' if none of the variants matched, which
is presumably what you want.
Brace expansion is not part of globbing; it generates `*.html *.cfm
*.htm' before the patterns are examined.
--
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