This file contains hidden or 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
#!/usr/bin/env bash | |
# Downloads the audio of a youtube video and converts to an .mp3 given a | |
# youtube URL. | |
if [ $# -eq 0 ]; then | |
echo "No arguments provided. Give full youtube URL." | |
exit 1 | |
fi |
OlderNewer