Skip to content

Instantly share code, notes, and snippets.

@marcinlawnik
Created November 5, 2013 22:11
Show Gist options
  • Save marcinlawnik/7327249 to your computer and use it in GitHub Desktop.
Save marcinlawnik/7327249 to your computer and use it in GitHub Desktop.
A simple script to download audio from yt and upload to gdrive, requires rg3/youtube-dl and gdrive
#!/bin/bash
youtube-dl -i -x -a list.txt
for file in *.m4a; do gdrive upload --file "$file"; done
find . -type f | wc -l
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment