Rsync

Rsync Use it sync between local and remote environments rsync -azP source destination -a option The -a option is a combination flag. It stands for “archive” and syncs recursively and preserves symbolic links, special and device files, modification times, group, owner, and permissions. It is more commonly used than -r and is usually what you want to use. -n, -dry-run Always double-check your arguments before executing an rsync command. Rsync provides a method for doing this by passing the -n or –dry-run options....

1 min · Yashodhan Ghadge