Skip to content

Instantly share code, notes, and snippets.

@huwr
Created May 19, 2017 06:19
Show Gist options
  • Save huwr/94fdfde031b3f6a70ad656a4c1eae6e0 to your computer and use it in GitHub Desktop.
Save huwr/94fdfde031b3f6a70ad656a4c1eae6e0 to your computer and use it in GitHub Desktop.
Do until success
#!/bin/bash
#Do until success...
until $*; do
sleep 0.1;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment