On Mon, Aug 22, 2011 at 7:48 PM, Vamshi. G <[email protected]> wrote: > Dear friends, > > I want to make a list of files created on my computer after a > particular date. I want to copy them and paste in a separate folder. > Is it possible?
Here's how you do it on GNU/Linux: To find all the files that was created or modified in the past two days: find . -mtime -2 To specify the time in minutes, replace "time" with "min". find . -mmin -30 will list out the files created or altered in the last 30 minutes. Regards James -- HASTA LA VICTORIA SIEMPRE! Search for old postings at: http://www.mail-archive.com/[email protected]/ To unsubscribe send a message to [email protected] with the subject unsubscribe. To change your subscription to digest mode or make any other changes, please visit the list home page at http://accessindia.org.in/mailman/listinfo/accessindia_accessindia.org.in
