|
Bash Wildcard Question
Hi,
I am writing a BASH script. In a directory I have a bunch of files of various filename structures. How do I list all the filenames that begin with either a capital or lowercase A or T. Is there one command that could replace the following 4:
ls A*
ls a*
ls T*
ls t*
Thanks.
Mike
|