![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| AIX AIX is IBM's industry-leading UNIX operating system that meets the demands of applications that businesses rely upon in today's marketplace. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Trying to Copy Files Changed Recently | scotbuff | Shell Programming and Scripting | 4 | 01-23-2007 09:04 AM |
| How to compare two flat files and get changed data | jtshashidhar | Shell Programming and Scripting | 3 | 01-29-2006 10:26 PM |
| How to copy N files from one dir to another | GMMike | UNIX for Dummies Questions & Answers | 1 | 10-13-2005 08:50 AM |
| how to copy files ? | svennie | UNIX for Dummies Questions & Answers | 9 | 09-29-2004 05:15 AM |
| Copy all files | 42!? | UNIX for Dummies Questions & Answers | 4 | 08-25-2002 12:05 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
way to copy only changed files
Hello, we are going through a restructoring of file systems and will need to copy the contents of one file system to another box, then a few days later copy it again. Is there a way on the second copy to only copy files that have changed? Thanks in advance
|
|
||||
|
cd /sourcedir;
find . -xdev -depth -print | cpio -pdm /destin_dir # After some days , cd /sourcedir; find . -xdev -depth -print | cpio -pdm /destin_dir The second copy will copy only those files which were changed / created from the earlier copy made. Regards, Kaps |
| Sponsored Links | ||
|
|