Skip to content

Instantly share code, notes, and snippets.

@mao-odoo
Last active October 2, 2024 10:09
Show Gist options
  • Save mao-odoo/1d2e47737988c319687b9f069922f0bb to your computer and use it in GitHub Desktop.
Save mao-odoo/1d2e47737988c319687b9f069922f0bb to your computer and use it in GitHub Desktop.
auto retry rsync until success
while ! rsync <put_all_rsync_parameter_here> ; do echo 'rsync failed, retrying'; sleep 3; done;
# use --info=progress2 to see the evolution in betwen attemptsd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment