new scripts
This commit is contained in:
parent
5f8bc83090
commit
f581c15066
4 changed files with 30 additions and 2 deletions
10
scripts/server_bin/bsky_follow.sh
Executable file
10
scripts/server_bin/bsky_follow.sh
Executable 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
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue