This commit is contained in:
Stefen Auris 2025-07-06 23:00:27 -04:00
parent 1c10f2c21f
commit 17bbd6ef4e
2 changed files with 6 additions and 6 deletions

View file

@ -1,8 +1,8 @@
#!/bin/bash
target=/home/stev/Pictures/gallery-dl/bluesky/follow2.txt
#edit follows file in place
read -e -p "edit the file $target ? " edit
if [[ "$edit" == [Yy]* ]]
read -e -p "edit the file? " edit
if [[ "$edit" == [Yy]* ]]; then
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
@ -10,7 +10,7 @@ fi
#check if list is valid
cat $target
read -e -p "is this list valid? " valid
if [[ "$valid" == [Yy]* ]]
if [[ "$valid" == [Yy]* ]]; then
#loop through the list and download
for i in `cat $target`; do
gallery-dl --sleep 1-3 "https://bsky.app/profile/$i"