new scripts

This commit is contained in:
Stefen Auris 2024-02-19 12:27:52 -05:00
parent 5f8bc83090
commit f581c15066
4 changed files with 30 additions and 2 deletions

View file

@ -0,0 +1,13 @@
#!/bin/bash
rm ~/bsky_error.txt
cd $HOME/gallery-dl/bluesky/
echo ">>>> Begin Downloads"
#gallery-dl --abort 3 -o retweets=true "https://twitter.com/stefenauris"
#gallery-dl --abort 3 -o retweets=true "https://twitter.com/DaybreakHero"
for i in */; do
echo ">> $i"
date
gallery-dl --sleep 1-3 --abort 3 "https://bsky.app/profile/$i" || echo "$i" >> ~/bsky_error.txt
echo " << waiting"
sleep 6
done