Rsync

Copies files from a source to destination. Syncs directories without copying already existing files and updating modified files. Works over SSH. remote -> local: local -> local: local -> remote: Options/flags: -a equals to use of following options -rlptgoD (basically -a options makes rsync a fully fledged backup tool) –delete  deletes files from the destination … Read moreRsync

SCP (Secure CoPy)

SCP uses SSH credentials to copy files and directories between 2 computers. It can be used to copy: From your local computer to a remote computer From a remote computer to your local computer Between two remote computers from your local computer The colon : sign is used to distinguish remote computer. SCP overwrites files … Read moreSCP (Secure CoPy)

Tested on Ubuntu & Pop OS