Part of data has been deleted and I have a backup. How can I copy back the data without syncing, and syncing only new data because the internet connection is very slow, and it is taking long time to upload all data again. So please is there any way to copy the backup without syncing, and syncing only the new data that are not in the backup.
Thank you for your response.
cp -u
only copies if the source is newer or the destination is missing - is that what you are searching for? – Ristridin Aug 19 '14 at 17:05rsync
which can calculate differences and only send them. – muru Aug 19 '14 at 17:25