Created
May 31, 2020 22:10
-
-
Save 2niuhe/ffa872c70e0ac2401255f1fec6e7782f to your computer and use it in GitHub Desktop.
autorestart youtube-dl download job
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/sh | |
while [ 0 -eq 0 ] | |
do | |
echo "----------------------job begin--------------------" | |
youtube-dl -r 3072k -f bestvideo+bestaudio https://youtu.be/OsmQvg8ZEr4?list=PLIx8QniXH-rEkJPV4dH-KobXtEp0EIS7r | |
if [$? -eq 0];then | |
echo "---------------------job complete------------------" | |
break; | |
else | |
echo "--------------------error occur,restart------------" | |
sleep 5 | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment