How can do I list all files using ls that have atleast 2 digits in their name? I tried this but it gave me error
ls *.log.[1-9][1-9]*.*
ls: *.log.[1-9][1-9]*.*: No such file or directory
I tried this and it list all files that have 0 as the second digit.
ls *.log.[1-9][0-9]*.*
Thanks