more verbosity

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

View File

@ -12,11 +12,13 @@ touch "$visited"
if grep -q "$album" "$visited"; then if grep -q "$album" "$visited"; then
continue continue
fi fi
echo "$album"
surf "$album" surf "$album"
echo -n "Like? " echo -n "Like? "
read -u 3 like read -u 3 like
if [ "$like" == "y" ]; then if [ "$like" == "y" ]; then
echo "$album" >> "$liked" echo "$album" >> "$liked"
echo "added to $liked"
fi fi
echo "$album" >> "$visited" echo "$album" >> "$visited"
done; } 3<&0 done; } 3<&0