From 9a7204692f66148082553f8bdd4d8701d39523d5 Mon Sep 17 00:00:00 2001 From: sc-idevops Date: Tue, 11 Jun 2024 02:03:06 -0400 Subject: [PATCH] from twitter to x domain --- scripts/server_bin/twitt_follow.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/server_bin/twitt_follow.sh b/scripts/server_bin/twitt_follow.sh index e21bfcd..45758b8 100755 --- a/scripts/server_bin/twitt_follow.sh +++ b/scripts/server_bin/twitt_follow.sh @@ -1,10 +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 +#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" + gallery-dl --sleep 4 --abort 3 "https://x.com/$i" done