warpedFrenzy
Technical User
I have to find the last modified file on a given date in the cwd.
So far I know (with a random example of date here)
Code:
ls -ltr | grep '2010-08-20'
I then need to find the last modified file of this list.
I know
Code:
find . -newer filename
But how do I find the last modified file on a specified date?
Thankyou for any help you can provide.