Skip to content

Instantly share code, notes, and snippets.

@panam510
Created January 9, 2019 08:53
Show Gist options
  • Select an option

  • Save panam510/01c1bf559ff36c0432ec445e8440da8c to your computer and use it in GitHub Desktop.

Select an option

Save panam510/01c1bf559ff36c0432ec445e8440da8c to your computer and use it in GitHub Desktop.
#!/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