-
Notifications
You must be signed in to change notification settings - Fork 2
/
tntv-download.osx.sh
executable file
·99 lines (79 loc) · 1.67 KB
/
tntv-download.osx.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
88
89
90
91
92
93
94
95
96
97
98
#!/bin/bash
# this script is OSX compatiable
# CURL is required since OSX does not have wget
ryanStyle=$1
ryanDirectory="podcasts"
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/$ryanDirectory/$1"
else
podcasts="$scriptPath"
fi
# just in case the directory does not exist
mkdir -p "$podcasts"
echo "$podcasts/$1$2.mp3"
if [[ ! -e "$podcasts/$1$2.mp3" ]] ; then
sleep 2 # just to be nice
if $ryanStyle ; then
curl -L -k -o "$podcasts/$1$2.mp3" "$urlbase$1/$1$2.mp3"
else
curl -L -k -o "$podcasts/$1$2.mp3" "$urlbase$1/$1$2.mp3"
fi
echo "\n\n"
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
# # 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 Extra Dimension
getseries ted
# # The Fringe
getseries tf
getpodcast tf 1x
# # The Universe
getseries tu
getpodcast tu 18x