new script and retired old one

This commit is contained in:
Stefen Auris 2024-01-12 20:29:19 -05:00
parent 731b3fdfad
commit 33b01a7b83
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#!/bin/bash
target=/home/stev/Pictures/gallery-dl/twitter/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 4 --abort 3 "https://twitter.com/$i"
done