1. [rsync] Sync 2 Folders the Quick Way

    - also nice for copying huge amounts of data with the ability to continue an aborted copy effort. Hit the terminal and …

    rsync -va --delete --progress /source/folder /target/folder

    v verbose
    a include subdirectories
    —delete also delete files that where removed from the source folder (for a 1:1 mirror)
    —progress show live progress display

Notes

  1. fiesefalle posted this