8 lines
135 B
Bash
Executable File
8 lines
135 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ -z $1 ]; then
|
|
echo "no url given"
|
|
else
|
|
youtube-dl --config-location ~/.config/youtube-dl/audioconfig $1
|
|
fi
|