Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to write a bash shell script to achieve the following. Get the list of all files from a directory. In the destination directory, if any of these files exist compare the dates. Copy the files to the destination directly only when the source file is newer than the destination file. Has to do this for each file. I have created a for loop to achieve the copy portion. But I need help in comparing the dates of the files.

Thanks

share|improve this question

3 Answers

up vote 1 down vote accepted

man test

FILE1 -nt FILE2
          FILE1 is newer (modification date) than FILE2

FILE1 -ot FILE2
          FILE1 is older than FILE2

...
-e FILE
          FILE exists
....
share|improve this answer
man cp | grep -C1 update

       -u, --update
              copy only when the SOURCE file is newer than the destination file or when the destination file is missing
share|improve this answer
Assuming GNU cp. – Jonathan Leffler Feb 3 at 23:17

You should be able to just do a cp.

cp -Ru /Your/original/path/ /destination/path/location/
share|improve this answer
You should explain the unusual option — the -u option. It is part of GNU cp, but not of any other versions that I know of (not in POSIX, nor in BSD — or BSD as represented by Mac OS X, at any rate). – Jonathan Leffler Feb 3 at 23:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.