diff --git a/scripts/server_bin/twitch_fullArchive.sh b/scripts/archive/twitch_fullArchive.sh similarity index 100% rename from scripts/server_bin/twitch_fullArchive.sh rename to scripts/archive/twitch_fullArchive.sh diff --git a/scripts/server_bin/twitt_follow.sh b/scripts/server_bin/twitt_follow.sh new file mode 100755 index 0000000..e21bfcd --- /dev/null +++ b/scripts/server_bin/twitt_follow.sh @@ -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 +