In unix shell I use find command to find files if i need files for last certain days I use following command: find . -type f -name "<filename>" -print
Now if I want files for last 10 days I use :
find . -type f -name "<filename>" -mtime -10 -print
Now suppose I want to find all files with file name and suppose a date how do I do that?