rsync
This is kind of my cheat sheet, nothing fancy, just what I need. Command: rsync -chavzP --stats 'host:~/RemotePath' ./LocalPath rsync - Befehl -c, –checksum -h, –human-readable -a, –archive -v, –verbose -z, –compress -P - equivalent to –partial –progress –stats - This tells rsync to print a verbose set of statistics on the file transfer ‘host:~/RemotePath’ - is the source path (in this case a remote path. ./LocalPath - ist the destination ...