Hello All,
How can I find the directories uploaded on a particular date using the find command. Example, look for the directories that were uploaded on the date 5/10/2009
Thanks,
Chinmay
Hello All,
How can I find the directories uploaded on a particular date using the find command. Example, look for the directories that were uploaded on the date 5/10/2009
Thanks,
Chinmay
Maybe if you edit your original post and correct the title .. somebody will understand you request and help you!
Personally I can't find any reference of fine command.
A work around in find command, if i would want to find out the files which are last modified in 09-10 AM, and the current time is 11 AM.
find -type f -mmin -120 -mmin +60
All these options are checked in "AND" condition, so it will show only files which are all last modified before 1 hour, and within previous 2 hours.
With this, you can simulate for your scenario, kindly take a look at -mtime option also in man page: find(1) - Linux man page
apologies for the typo. yes, I did meant find..
thegeek, thanks for the reply...
# touch -t 200905100000 dummy1
# touch -t 200905110000 dummy2
# find . -type d \( -newer dummy1 -a ! -newer dummy2 \)