From 107b9c5341a52d03350d698b5ec42e26d810a93c Mon Sep 17 00:00:00 2001 From: Steven Baltakatei Sandoval Date: Thu, 25 Jul 2024 21:30:59 +0000 Subject: [PATCH] style(user/bkytpldl-generic):Adjust comment --- user/bkytpldl-generic | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/user/bkytpldl-generic b/user/bkytpldl-generic index d94bfac..ae79832 100644 --- a/user/bkytpldl-generic +++ b/user/bkytpldl-generic @@ -1,16 +1,16 @@ #!/usr/bin/env bash # Desc: Download YouTube videos # Usage: $ ./bkytpldl-generic -# Version: 4.1.0 +# Version: 4.1.1 declare -a args; # array for yt-dlp arguments declare -a urls urls_rand; # array for YouTube playlist URLs # Settings dir_out="~/Videos/"; -urls+=("https://www.youtube.com/playlist?list=PLxxx"); # adjust me -urls+=("https://www.youtube.com/playlist?list=PLxxx"); # adjust me -urls+=("https://www.youtube.com/playlist?list=PLxxx"); # adjust me +urls+=("https://www.youtube.com/playlist?list=PLxxx"); # Adjust me. YouTube playlist URL goes here +urls+=("https://www.youtube.com/playlist?list=PLxxx"); # Adjust me. YouTube playlist URL goes here +urls+=("https://www.youtube.com/playlist?list=PLxxx"); # Adjust me. YouTube playlist URL goes here yell() { echo "$0: $*" >&2; } # print script path and all args to stderr die() { yell "$*"; exit 111; } # same as yell() but non-zero exit status -- 2.30.2