Skip to content

Instantly share code, notes, and snippets.

@thibmaek
Last active March 11, 2019 09:57
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 thibmaek/71336548704115ca7fbee9cfde5fe2ba to your computer and use it in GitHub Desktop.
Save thibmaek/71336548704115ca7fbee9cfde5fe2ba to your computer and use it in GitHub Desktop.
Download season from VRTNU
# Example to download every episode from VRTNU (A-Z Luc Tuymans)
function main() {
local episodes=(1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26)
for ep in "${episodes[@]}"; do
youtube-dl "https://www.vrt.be/vrtnu/a-z/van-a-tot-z--luc-tuymans/2019/van-a-tot-z--luc-tuymans-s2019a$ep/"
done
unset episodes
}
main "$@"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment