diff --git a/scripts/server_bin/bsky_follow.sh b/scripts/server_bin/bsky_follow.sh index 8796830..26da090 100755 --- a/scripts/server_bin/bsky_follow.sh +++ b/scripts/server_bin/bsky_follow.sh @@ -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 diff --git a/scripts/server_bin/update_onlyfans.sh b/scripts/server_bin/update_onlyfans.sh index c95e6ed..4f42b83 100755 --- a/scripts/server_bin/update_onlyfans.sh +++ b/scripts/server_bin/update_onlyfans.sh @@ -2,5 +2,5 @@ # docker pull ghcr.io/datawhores/of-scraper:latest test -t 1 && USE_TTY="-it" docker run ${USE_TTY} --rm --name=ofscraper -u 1000:1000 -v /home/stev/.config/ofscraper:/home/ofscraper/.config/ -v /home/stev/gallery-dl/onlyfans:/home/ofscraper/data \ - ghcr.io/datawhores/of-scraper:main \ - ofscraper --output normal --action download --sort subscribed --post timeline,profile,messages,purchased -ts --username ALL + ghcr.io/datawhores/of-scraper:latest \ + ofscraper --output normal --action download --sort subscribed --post timeline,streams,messages,purchased -ts --username ALL