Ls command help

Use the ls command with a single argument to list all files whose names start with 'ba' followed by a vowel.

I use this command to display all the files that start with 'ba', but after that I do not know how to display the files that have a vowel following this.

ls ba*

ls ba[aeiou]*
1 Like

Thanks!