Hi, I need help to get bash interpret correctly regular expressions.
In the shell I get:
--------------------
$ ls
A b C d
$ ls [a-z]
A b C d
$ ls [A-Z]
A b C d
----------------------
But I think that this should be the correct output:
-----------------
$ ls [a-z]
b d
$ ls [A-Z]
A C
-------------------
Any Idea...
Thanks,
Jose
In the shell I get:
--------------------
$ ls
A b C d
$ ls [a-z]
A b C d
$ ls [A-Z]
A b C d
----------------------
But I think that this should be the correct output:
-----------------
$ ls [a-z]
b d
$ ls [A-Z]
A C
-------------------
Any Idea...
Thanks,
Jose
Comment