jb-templates/sh/linuxunplugged.sh

33 lines
704 B
Bash
Raw Normal View History

2014-02-09 06:32:07 -06:00
# linux unplugged downloader
HDvideo="http://www.podtrac.com/pts/redirect.mp4/201402.jb-dl.cdn.scaleengine.net/linuxun/2014/lup-0026.mp4"
MP3audio="http://www.podtrac.com/pts/redirect.mp3/traffic.libsyn.com/jnite/lup-0026-mp3.mp3"
OGGaudio="http://www.podtrac.com/pts/redirect.ogg/traffic.libsyn.com/jnite/lup-0026-ogg.ogg"
destDIR="/home/$USER/syncs/linuxunplugged/"
function chkDIR(){
if [ ! -d ${destDIR} ];then
mkdir ${destDIR}
elif [ -d ${destDIR} ];then
main
fi
}
function main(){
rm -v -R ${destDIR}*.mp3; rm -v -R ${destDIR}*.ogg; rm -v -R ${destDIR}*.mp4
wget ${HDvideo} -P ${destDIR}
wget ${MP3audio} -P ${destDIR}
wget ${OGGaudio} -P ${destDIR}
}
chkDIR