blob: 0c6dfe0c29a6ab48b126ca31d9a9f42cfcfb9df5 (
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 -io '%(playlist_uploader)s - %(playlist_title)s [%(playlist_id)s]/%(playlist_index)s %(title)s.%(ext)s' "https://www.youtube.com/playlist?list=$1"
|