check if list is valid before proceeding

This commit is contained in:
Stefen Auris 2025-04-25 13:00:12 -04:00
parent 3b1e1f58ca
commit 8e42abcad4
2 changed files with 7 additions and 3 deletions

View file

@ -4,8 +4,12 @@ target=/home/stev/Pictures/gallery-dl/bluesky/follow2.txt
iconv -c -f utf-8 -t ascii /home/stev/Pictures/gallery-dl/bluesky/follow.txt > $target
sed -n -i '/^@/p' $target
sed -ie 's/^.//' $target
#check if list is valid
cat $target
read -e -p "is this list valid? " valid
if [[ "$valid" == [Yy]* ]]
#loop through the list and download
for i in `cat $target`; do
gallery-dl --sleep 1-3 "https://bsky.app/profile/$i"
done
fi