Created
August 11, 2021 18:43
-
-
Save alyssadev/6997c0e32a18a81d993a34ab92e9581a to your computer and use it in GitHub Desktop.
a thing to download every series from First We Feast for some reason
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/bash | |
function dlyt { | |
i=1 | |
while read p; do | |
mkdir -p "$1/Season $i" | |
cd "$1/Season $i" | |
youtube-dl -ciw -f 22 -o "%(autonumber)s - %(title)s.%(ext)s" "$p" | |
cd "$OLDPWD" | |
i=$((i+1)) | |
done | |
} | |
dlyt "Hot Ones" <<EOF | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMIfV-k5JA89NP3j2JGsFapZ | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMILwwuaCqGetHcYs9NjDkLC | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJBCt-lRk6risydJRkmm-iO | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMLQMUHDrs3bD3RpV-gbH_43 | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJUAyM97dEpasBiWdUxp0oU | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMLTBXKb0BtKDgrR9Qe8UKwe | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJk-pzvDvBM2hDgiBjo51ey | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJZoWcO2Jrrm647r0oQZgqQ | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMIwGmZWJLVbu0BmoEhVMQMw | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJeNSWN9XJPbzP_k3Tddz0x | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKHkAOafKTEt4BfDD154EaU | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKJk8o_iIKE8tSJoUEn71lc | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMLlNmYrWNOwV52bHAwrmHoO | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJkBpjH-Wavb86UYlCahnjh | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMLhb1bV3ATXhsVCwhoc1Sf2 | |
EOF | |
dlyt "Sean in the Wild" <<EOF | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJwpWSRJUoTUXUlnSkrPM-5 | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMIBz1ruMTu8yqnDuel4ei8i | |
EOF | |
dlyt "The Burger Show" <<EOF | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMLWkhRQxRwNeKcXS3SZOBkV | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMLapeK4z4mYVnFCyZ4PRhU9 | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJkq1iErnBrByYC69XCxgov | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMK8zGcsu70ju7KvWyNBWYnL | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKoPLk9xZkrrxyznk2SJQ3B | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJHe7E9ZAuocf_nL4Q8D_0_ | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJURWEuYrbm8PnIaKaDhh7x | |
EOF | |
dlyt "That's Odd, Let's Drink It" <<EOF | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJea14KlykCBfx_sE_K0cic | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKgq6Dlse6I1IKcKiu-J6yR | |
EOF | |
dlyt "Feast Mansion" <<EOF | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMK38tPJV1wUQw6sdCFBbBI- | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJDCAfN8Zxi8od-um3WY6AF | |
EOF | |
dlyt "Curry Shop" <<EOF | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKb-Qbm8XeqxaJTqikofFmU | |
EOF | |
dlyt "Burger Scholar Sessions" <<EOF | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMIkFTtpY-Vn0Kjj_LQ0pE0M | |
EOF | |
dlyt "Tacos Con Todo" <<EOF | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKa8GMTfgYbNhfHQaHNX6I_ | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMJRUL_nTVVAa_U6pu7XFGgU | |
EOF | |
dlyt "Coneheads" <<EOF | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMI3kcTLiUU-oCts4ZOK8RYP | |
EOF | |
dlyt "Truth or Dab" <<EOF | |
https://www.youtube.com/playlist?list=PLAzrgbu8gEMKOd-wxYAzfKgYATtvId1DV | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment