jb-templates/sh/techsnap.sh
2014-02-09 06:59:57 -06:00

35 lines
424 B
Bash
Executable File

# techsnap downloader
HDvideo=""
MP3audio=""
OGGaudio=""
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