-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtntv-download.sh
executable file
·89 lines (72 loc) · 1.4 KB
/
tntv-download.sh
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/bin/bash
ryanStyle=$1
urlbase=https://s3.amazonaws.com/the-nexus-tv/podcasts/
scriptPath="`dirname \"$0\"`"
cd $scriptPath
if [[ -z $ryanStyle ]] ; then
ryanStyle=true;
fi
function getseries(){
local i=1
while [[ true ]] ; do
getpodcast $1 $i
if [[ $? -ne 0 ]] ; then
break;
fi
let i++
done
return 0
}
function getpodcast(){
if $ryanStyle ; then
podcasts="$scriptPath/$1"
else
podcasts="$scriptPath"
fi
if [[ ! -e "$podcasts/$1$2.mp3" ]] ; then
sleep 2 # just to be nice
if $ryanStyle ; then
wget --no-check-certificate -P "$podcasts/" "$urlbase$1/$1$2.mp3"
else
wget --no-check-certificate "$urlbase$1/$1$2.mp3"
fi
fi
}
# Each series is downloaded below
# After each series is downloaded,
# exceptions to the series conventions are downloaded
# ---
# At The Nexus
getseries atn
getpodcast atn 20x
getpodcast atn 31x
getpodcast atn 50x
getpodcast atn 50_64
getpodcast atn 56x
getpodcast atn 61x
# Control Structure
getseries cs
getpodcast cs 0 # i'm special!
# Eight Bit
getseries eb
# In Bootcamp
getseries ib
getpodcast ib 0
# The Extra Dimension
getseries ted
# Nexus Special
getseries ns
getpodcast ns 5x
# Podkit
getseries pk
# Robots Will Steal Your Job
getseries rsj
getpodcast rsj 0 # intro
#Second Opinion
getseries so
# The Fringe
getseries tf
getpodcast tf 1x
# The Universe
getseries tu
getpodcast tu 18x