Created
November 5, 2013 22:11
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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