Last active 1628671436

a thing to download every series from First We Feast for some reason

fwf-dl.sh Raw
1#!/bin/bash
2function dlyt {
3 i=1
4 while read p; do
5 mkdir -p "$1/Season $i"
6 cd "$1/Season $i"
7 youtube-dl -ciw -f 22 -o "%(autonumber)s - %(title)s.%(ext)s" "$p"
8 cd "$OLDPWD"
9 i=$((i+1))
10 done
11}
12
13dlyt "Hot Ones" <<EOF
14https://www.youtube.com/playlist?list=PLAzrgbu8gEMIfV-k5JA89NP3j2JGsFapZ
15https://www.youtube.com/playlist?list=PLAzrgbu8gEMILwwuaCqGetHcYs9NjDkLC
16https://www.youtube.com/playlist?list=PLAzrgbu8gEMJBCt-lRk6risydJRkmm-iO
17https://www.youtube.com/playlist?list=PLAzrgbu8gEMLQMUHDrs3bD3RpV-gbH_43
18https://www.youtube.com/playlist?list=PLAzrgbu8gEMJUAyM97dEpasBiWdUxp0oU
19https://www.youtube.com/playlist?list=PLAzrgbu8gEMLTBXKb0BtKDgrR9Qe8UKwe
20https://www.youtube.com/playlist?list=PLAzrgbu8gEMJk-pzvDvBM2hDgiBjo51ey
21https://www.youtube.com/playlist?list=PLAzrgbu8gEMJZoWcO2Jrrm647r0oQZgqQ
22https://www.youtube.com/playlist?list=PLAzrgbu8gEMIwGmZWJLVbu0BmoEhVMQMw
23https://www.youtube.com/playlist?list=PLAzrgbu8gEMJeNSWN9XJPbzP_k3Tddz0x
24https://www.youtube.com/playlist?list=PLAzrgbu8gEMKHkAOafKTEt4BfDD154EaU
25https://www.youtube.com/playlist?list=PLAzrgbu8gEMKJk8o_iIKE8tSJoUEn71lc
26https://www.youtube.com/playlist?list=PLAzrgbu8gEMLlNmYrWNOwV52bHAwrmHoO
27https://www.youtube.com/playlist?list=PLAzrgbu8gEMJkBpjH-Wavb86UYlCahnjh
28https://www.youtube.com/playlist?list=PLAzrgbu8gEMLhb1bV3ATXhsVCwhoc1Sf2
29EOF
30
31dlyt "Sean in the Wild" <<EOF
32https://www.youtube.com/playlist?list=PLAzrgbu8gEMJwpWSRJUoTUXUlnSkrPM-5
33https://www.youtube.com/playlist?list=PLAzrgbu8gEMIBz1ruMTu8yqnDuel4ei8i
34EOF
35
36dlyt "The Burger Show" <<EOF
37https://www.youtube.com/playlist?list=PLAzrgbu8gEMLWkhRQxRwNeKcXS3SZOBkV
38https://www.youtube.com/playlist?list=PLAzrgbu8gEMLapeK4z4mYVnFCyZ4PRhU9
39https://www.youtube.com/playlist?list=PLAzrgbu8gEMJkq1iErnBrByYC69XCxgov
40https://www.youtube.com/playlist?list=PLAzrgbu8gEMK8zGcsu70ju7KvWyNBWYnL
41https://www.youtube.com/playlist?list=PLAzrgbu8gEMKoPLk9xZkrrxyznk2SJQ3B
42https://www.youtube.com/playlist?list=PLAzrgbu8gEMJHe7E9ZAuocf_nL4Q8D_0_
43https://www.youtube.com/playlist?list=PLAzrgbu8gEMJURWEuYrbm8PnIaKaDhh7x
44EOF
45
46dlyt "That's Odd, Let's Drink It" <<EOF
47https://www.youtube.com/playlist?list=PLAzrgbu8gEMJea14KlykCBfx_sE_K0cic
48https://www.youtube.com/playlist?list=PLAzrgbu8gEMKgq6Dlse6I1IKcKiu-J6yR
49EOF
50
51dlyt "Feast Mansion" <<EOF
52https://www.youtube.com/playlist?list=PLAzrgbu8gEMK38tPJV1wUQw6sdCFBbBI-
53https://www.youtube.com/playlist?list=PLAzrgbu8gEMJDCAfN8Zxi8od-um3WY6AF
54EOF
55
56dlyt "Curry Shop" <<EOF
57https://www.youtube.com/playlist?list=PLAzrgbu8gEMKb-Qbm8XeqxaJTqikofFmU
58EOF
59
60dlyt "Burger Scholar Sessions" <<EOF
61https://www.youtube.com/playlist?list=PLAzrgbu8gEMIkFTtpY-Vn0Kjj_LQ0pE0M
62EOF
63
64dlyt "Tacos Con Todo" <<EOF
65https://www.youtube.com/playlist?list=PLAzrgbu8gEMKa8GMTfgYbNhfHQaHNX6I_
66https://www.youtube.com/playlist?list=PLAzrgbu8gEMJRUL_nTVVAa_U6pu7XFGgU
67EOF
68
69dlyt "Coneheads" <<EOF
70https://www.youtube.com/playlist?list=PLAzrgbu8gEMI3kcTLiUU-oCts4ZOK8RYP
71EOF
72
73dlyt "Truth or Dab" <<EOF
74https://www.youtube.com/playlist?list=PLAzrgbu8gEMKOd-wxYAzfKgYATtvId1DV
75EOF
76