blob: 3f35e59566d13fee809d0734b7b3d2db74bd1d6f (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
if [ $# -ne 1 ]; then
echo "Usage: $0 <playlist_id>"
exit 1
fi
exec youtube-dl -o '%(playlist_uploader)s - %(playlist_title)s [%(playlist_id)s]/%(playlist_index)s %(title)s.%(ext)s' "https://www.youtube.com/playlist?list=$1"
|