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