[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Is this a bash wildcard bug?
From: |
grendelos |
Subject: |
Is this a bash wildcard bug? |
Date: |
Thu, 20 Nov 2008 13:55:05 -0800 (PST) |
So this is really bugging me. Why is [a-z] not case sensitive, but [A-Z] is?
For example:
# ls -l
total 0
-rw-r--r-- 1 root root 0 Nov 20 12:22 xa
-rw-r--r-- 1 root root 0 Nov 20 12:22 xA
# ls -l x[a-z]
-rw-r--r-- 1 root root 0 Nov 20 12:22 xa
-rw-r--r-- 1 root root 0 Nov 20 12:22 xA
# ls -l x[A-Z]
-rw-r--r-- 1 root root 0 Nov 20 12:22 xA
Any ideas?
grendelos
--
View this message in context:
http://www.nabble.com/Is-this-a-bash-wildcard-bug--tp20608511p20608511.html
Sent from the Gnu - Bash mailing list archive at Nabble.com.
- Is this a bash wildcard bug?,
grendelos <=