I\'m working on a tiny dropbox-like bash script, how can I compare the dates of 2 files and replace the old one(s) with the new one without using rsync is t
You can compare file modification times with test, using -nt (newer than) and -ot (older than) operators:
test
-nt
-ot
if [ "$file1" -ot "$file2" ]; then cp -f "$file2" "$file1" fi