Skip to content

Instantly share code, notes, and snippets.

@2niuhe
Created May 31, 2020 22:10
Show Gist options
  • Save 2niuhe/ffa872c70e0ac2401255f1fec6e7782f to your computer and use it in GitHub Desktop.
Save 2niuhe/ffa872c70e0ac2401255f1fec6e7782f to your computer and use it in GitHub Desktop.
autorestart youtube-dl download job
#!/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