Skip to content

Instantly share code, notes, and snippets.

@justinchuby
Created August 30, 2023 16:11
Show Gist options
  • Save justinchuby/de54ba98fd85b5527128f3c38df868cc to your computer and use it in GitHub Desktop.
Save justinchuby/de54ba98fd85b5527128f3c38df868cc to your computer and use it in GitHub Desktop.
Bash retry
# https://github.com/pytorch/pytorch/pull/106984/files
retry () {
"$@" || (sleep 10 && "$@") || (sleep 20 && "$@") || (sleep 40 && "$@")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment