Skip to content

Instantly share code, notes, and snippets.

@devsli
Last active September 10, 2019 07:29
Show Gist options
  • Save devsli/bbef1969d35036556577200436340621 to your computer and use it in GitHub Desktop.
Save devsli/bbef1969d35036556577200436340621 to your computer and use it in GitHub Desktop.
Repeat command until it completes successfully
#!/bin/sh
while ! "$@"
do
echo Retry in 5 sec...
sleep 5
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment