Last active
March 11, 2019 09:57
-
-
Save thibmaek/71336548704115ca7fbee9cfde5fe2ba to your computer and use it in GitHub Desktop.
Download season from VRTNU
This file contains 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
# 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