fixed pick

This commit is contained in:
Emma Tebibyte 2023-11-21 14:07:53 -07:00
parent 2c90e50842
commit d09c811bcc
Signed by: emma
GPG Key ID: 6D661C738815E7DD

5
yt
View File

@ -144,7 +144,7 @@ pick() { # Pick a video to play from a playlist of videos
exit 78 # sysexits.h(3) EX_CONFIG
fi
while test -f "$YT_PL_DIR/$1.m3u"; do
if test -f "$YT_PL_DIR/$1.m3u"; then
file="$YT_PL_DIR/$1.m3u"
for line in $(lines "$file"); do
@ -161,8 +161,7 @@ pick() { # Pick a video to play from a playlist of videos
list="$(printf '%s\n%s' "$list" "$(grep "$line" "$cachefile")")"
fi
done
shift
done
fi
chosen="$(printf '%s\n' "$list" | $YTPICK | sed -e 's/.*\[//g' -e 's/\]//g')"
printf "%s: %s: Playing stream.\n" "$argv0" "$chosen" 1>&2