How do i list all files or directories starting with 'a' or 'b' using ls? I tried ls a* and it doesn't work?
-ABC
ls -lrt -ABC
All files starting a
ls a*
All files starting with 'a' or 'b'
ls [ab]*