Here’s how to sync files between two directories, while copying only new files and ignoring existing files.
rsync --ignore-existing -rapzvh /dir1 /dir2 >> /root/rsync.log & |
cloud engineer
Here’s how to sync files between two directories, while copying only new files and ignoring existing files.
rsync --ignore-existing -rapzvh /dir1 /dir2 >> /root/rsync.log & |
rsync --ignore-existing -rapzvh /dir1 /dir2 >> /root/rsync.log &