Skip to content

Instantly share code, notes, and snippets.

@kirkins
Created August 5, 2019 20:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kirkins/c773a0913413f763b9070ddfd7aab159 to your computer and use it in GitHub Desktop.
Save kirkins/c773a0913413f763b9070ddfd7aab159 to your computer and use it in GitHub Desktop.
download list of youtube videos
while read v; do
echo "$v"
youtube-dl "$v" || echo "$v" > failed
sleep 200
done <videos.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment