Hi,
in bash, I would like to use the command "find" to find files which contain the numbers from 40 to 70 in a certain position like c43_data.txt. How is it possible to implement this filter in find ?
I tried file . -name "c**_data.txt" | grep 4, but this is not very nice
Thanks