more verbosity

This commit is contained in:
gutmet 2021-04-02 00:07:56 +02:00
parent 7e6694e97a
commit 317c8acf1e

View File

@ -11,12 +11,14 @@ touch "$visited"
{ curl "https://bandcamp.com/tag/$tag?tab=all_releases&s=random" 2>/dev/null | grep -oP "https://[a-zA-Z0-9\-äöü]*?.bandcamp.com/album/.*?(?=&quot)" | while read album; do
if grep -q "$album" "$visited"; then
continue
fi
fi
echo "$album"
surf "$album"
echo -n "Like? "
read -u 3 like
if [ "$like" == "y" ]; then
echo "$album" >> "$liked"
echo "added to $liked"
fi
echo "$album" >> "$visited"
done; } 3<&0