Files
unix-scripts/Tools/youtubedw.sh
2023-04-03 17:47:42 +02:00

7 lines
140 B
Bash
Executable File

#!/bin/bash
if test $# -eq 1; then
yt-dlp -f 'ba' -x --audio-format mp3 $1 -o '%(title)s.%(ext)s'
else
echo "$ youtubedw.sh 'enlace'"
fi