diff --git a/youtube-dl.zsh b/youtube-dl.zsh index db73f78..4647566 100644 --- a/youtube-dl.zsh +++ b/youtube-dl.zsh @@ -6,3 +6,7 @@ alias downloadAudio="yt-dlp --downloader aria2c -o \"%(playlist_index)s %(title) alias downloadMusic="yt-dlp --downloader aria2c -x --add-metadata -o \"%(playlist_title)s/%(playlist_index)s %(title)s.%(ext)s\"" alias dlBeat="yt-dlp --downloader aria2c --no-playlist --audio-format m4a -x" alias downloadYT="yt-dlp --downloader aria2c --write-thumbnail -o \"%(title)s.%(ext)s\"" +function downloadList() { + cat $1 |xargs -I _ yt-dlp --downloader aria2c _ +} +