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,10 @@
#!/bin/bash
target=/home/stev/Pictures/gallery-dl/bluesky/follow.txt
#edit follows file in place
sed -n -i '/^@/p' $target
sed -ie 's/^.//' $target
#loop through the list and download
for i in `cat $target`; do
gallery-dl --sleep 1-3 "https://bsky.app/profile/$i"
done