hi all
I used the following RE:
^file(\d{1,3})(\w*)(?:\.(\d{0,3})(\w*))?
To match the following
file1.bla
or
file1.1
or
file1.1.bla
but after:
ls "^file(\d{1,3})(\w*)(?:\.(\d{0,3})(\w*))?"
I not see any match of the relevant files why? Yael