আপনি rsync ব্যবহার করতে পারেন।
rsync -aP ./from/dir/ /some/other/directory/
এমনকি আপনি এসএসএসের মাধ্যমেও অনুলিপি করতে পারেন
rsync -aP ./from/dir/ username@remotehost:/some/other/directory/
আপনি ব্যবহার করতে পারেন এমন বিভিন্ন পতাকা রয়েছে: -এ, --আর্কাইভ # সংরক্ষণাগার (-rlptgoD)
-r, --recursive
-l, --links # copy symlinks as links
-p, --perms # preserve permissions
-t, --times # preserve times
-g, --group # preserve group
-o, --owner # preserve owner
-D # --devices --specials
--delete # Delete extra files
You may want to add the -P option to your command.
--partial # By default, rsync will delete any partially transferred file if the transfer is interrupted. In some circumstances it is more desirable to keep partially transferred files. Using the --partial option tells rsync to keep the partial file which should make a subsequent transfer of the rest of the file much faster.
-P # The -P option is equivalent to --partial --progress. Its purpose is to make it much easier to specify these two options for a long transfer that may be interrupted.
Rsync ম্যান পেজ