# LAs downloader HDvideo="" MP3audio="" OGGaudio="" destDIR="/home/$USER/syncs/linuxactionshow/" 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