Skip to content

Instantly share code, notes, and snippets.

@collinprice
Created February 19, 2014 20:29
Show Gist options
  • Save collinprice/9100822 to your computer and use it in GitHub Desktop.
Save collinprice/9100822 to your computer and use it in GitHub Desktop.
YouTube Channel Downloader
CHANNEL=$1
if [ -z $CHANNEL ]; then
echo "Missing channel name parameter."
exit 0
fi
mkdir $CHANNEL
cd $CHANNEL
youtube-dl -ciw -o '%(upload_date)s - %(title)s.%(ext)s' ytuser:$CHANNEL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment