Skip to content

Instantly share code, notes, and snippets.

View bo01ean's full-sized avatar

Nathan Trujillo bo01ean

View GitHub Profile
@bo01ean
bo01ean / rip.sh
Last active October 20, 2019 06:08
### pip install youtube-dl
### rip "https://www.youtube.com/watch?v=7jR1JWQwqNo"
rip() {
youtube-dl -f bestaudio --extract-audio --audio-format mp3 --audio-quality 0 "$1"
}