Created
January 9, 2019 08:53
-
-
Save panam510/01c1bf559ff36c0432ec445e8440da8c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| NEXT_WAIT_TIME=0 | |
| until command youtube-dl "$@" || [ $NEXT_WAIT_TIME -eq 20 ]; do | |
| sleep $(( NEXT_WAIT_TIME++ )) | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment