aboutsummaryrefslogtreecommitdiff
path: root/scripts/dlmusic
blob: aeda290c646b73646a8868f098aff39299f6a322 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

# A script to not make me type all that argument **** when I want to download music. 
# Yes I am lazy.

if [ "$1" ] 
then
	youtube-dl "$1" --extract-audio -i -o "%(title)s.%(ext)s" --audio-format mp3
	exit 0
else
	printf "[ Error ] Not enough arguments.\n"
	exit 1
fi