The perfect choice of one-stop service for diversification of architecture.
(like Foo.
bar, .
t.
txt, unlike 123.
6, foo.
bar)With zsh -o dotglob or bash -O dotglob (the dotglob being to include files whose name starts with .):With find:(with some find implementations, does not include filenames with invalid characters even if some of the valid characters are uppercase ones) To allow combining characters, with zsh -o pcrematch, you could use a perl-like regular expression making use of Unicode character properties:
So I've been playing around with filesystem and wondered about listing the files in /etc that contains only upper-case letters in their names. I commanded
ls *[A-Z]*
But the console shows the files containing lower chars too.
I want to use only ls command. Is the console program locale dependent?
What is the underlying cause?
·OTHER ANSWER:
So I've been playing around with filesystem and wondered about listing the files in /etc that contains only upper-case letters in their names. I commanded
ls *[A-Z]*
But the console shows the files containing lower chars too.
I want to use only ls command. Is the console program locale dependent?
What is the underlying cause?