The UNIX and Linux Forums
>
Top Forums
>
UNIX for Advanced & Expert Users
How can i copy files by date last modifed range?
User Name
Remember Me?
Password
Google UNIX.COM
Forums
Portal
Register
Forum Rules
FAQ
Contribute
Members List
Arcade
Search
Today's Posts
Mark Forums Read
Thread
:
How can i copy files by date last modifed range?
View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
#
3
(
permalink
)
05-15-2008
Danny.Chouinard
Registered User
Join Date: May 2008
Posts: 20
You can also tell find to find files that are newer than one file.
Code:
find . -type f -newer timestamped_file -print
will print all the files that were modified since the last time timestamped_file was modified.
man find reveals all.
Last edited by Yogesh Sawant; 05-16-2008 at
04:23 AM
. Reason: added code tags
Danny.Chouinard
View Public Profile
Find all posts by Danny.Chouinard