I created an alias ll="ls -laF" and i have tried to use ll *[aeiou] [aeiou]*
and it just shows all the files that have two two files that have the letters aeiou in them. I also tried ll *[aeiou]* and i just get a listing of everything in a file again.
I created an alias ll=ls -laF and i have tried to use ll *[aeiou]
Share
The ? matches a single character, so you’re looking for
ls -laF ?[aeiou]*