👩💻 Join our community of thousands of amazing developers!
Syncing files remotely via rsync 02.07.2020 Picture by Markus Spiske. rsync is a great tool for copying files, especially to/from remote locations, like ssh-servers. I use it almost daily for managing this website and also for backing up some personal files to a server so I have access to them from anywhere. For syncing different computers on the same wifi I recommend Syncthing. The command I almost always use rsync -avzhu --delete src dest The options in detail -a archive mode: equivalent t...