Do it until it works!

#!/bin/bash
# From LinuxGazette.com (Ben Okopnik)
# Rerun command line until successful
until $*; do sleep 1; done

Comments

No comments.