jb-templates/sh/techsnap.sh

35 lines
424 B
Bash
Raw Normal View History

2014-02-09 06:32:07 -06:00
# techsnap downloader
2014-02-09 06:59:57 -06:00
HDvideo=""
MP3audio=""
OGGaudio=""
2014-02-09 06:32:07 -06:00
destDIR="/home/$USER/syncs/techsnap/"
function chkDIR(){
if [ ! -d ${destDIR} ];then
mkdir ${destDIR}
elif [ -d ${destDIR} ];then
main
fi
}
function main(){
rm -v ${destDIR}*.mp3
rm -v ${destDIR}*.ogg
rm -v ${destDIR}*.mp4
wget ${HDvideo} -P ${destDIR}
wget ${MP3audio} -P ${destDIR}
wget ${OGGaudio} -P ${destDIR}
}
chkDIR