rsync

Icon  Name                    Last modified      Size  Description
[PARENTDIR] Parent Directory - [DIR] news/ 2026-08-14 09:15 - [DIR] CVE-2024-12084/ 2025-01-14 23:03 - [TXT] fileSyncTool.bash 2016-02-26 23:00 11K
intro

rsnapshot


e.g. export NAS=192.168.0.2 # download a folder! rsync -ahvze ssh --progress ${NAS}:/volume1/data/test ./ # clean the folder, double check, then # sync back changes AND removals (!) of originals, too # # first echo rsync <options> # then rsync --dry-run <options> # if absolutely sure, rsync -ahvze ssh --progress --delete test ${NAS}:/volume1/data # 1. ^----- no "/" ---------^ # 2. not to ...data/test , just data # check often, check easily # md5sum * > sums.txt md5sum -c sums.txt # macOS and MacPorts? # port install coreutils rsync /opt/local/bin/rsync --version ; echo vs. ; /usr/bin/rsync --version gmd5sum --help ^ ^
See also rclone