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

38 lines
476 B
Bash
Executable File

# scibyte downloader
#HDvideo=""
MOBILEvideo=""
MP3audio=""
OGGaudio=""
destDIR="/home/$USER/syncs/scibyte/"
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 ${MOBILEvideo} -P ${destDIR}
wget ${MP3audio} -P ${destDIR}
wget ${OGGaudio} -P ${destDIR}
}
chkDIR