hi, I need to list all files (log files) in one directory that are created on specific date. find /path/to/files/log* -mtime 10 will give me files created 10 days ago. actually it will give me all files created (now is 10:31 am) between 2010-08-31 10:31:00 and 2010-09-01 10:31:00 I need all files for SPECIFIC day. thanks