retry.sh 113 B

123456789
  1. #!/usr/bin/env bash
  2. for i in {1..3}
  3. do
  4. $1 "${@:2:99}" && exit 0;
  5. export BEAST_RETRY="true"
  6. done
  7. exit 1