Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: make "for x in *$1*" case insensitive?
- X-seq: zsh-users 7107
- From: Peter Stephenson <pws@xxxxxxx>
- To: zsh-users@xxxxxxxxxx (Zsh users list)
- Subject: Re: make "for x in *$1*" case insensitive?
- Date: Thu, 04 Mar 2004 14:20:27 +0000
- In-reply-to: "zzapper"'s message of "Thu, 04 Mar 2004 14:11:40 GMT." <r2ee40dco8k1kv0p0k1i8cmo4v866f590v@xxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
zzapper wrote:
> Hi Y'All
>
> for x in *$1*
>
> How can I make above case insensitive I guess I could transform
Make what case insensitive? There's no test.
If you have a test, you can turn on extended_glob and use the (#i) flag:
setopt extended_glob
[[ MAIN = (#i)main ]] && print yes
Works in case statements, too, but remember the balanced parentheses:
case $1 in
((#i)main) print yes
;;
esac
--
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