Created
December 29, 2018 23:16
-
-
Save pr1ntf/d91fbf5be61ee008b11dd64a9482023b to your computer and use it in GitHub Desktop.
Gobble twitter data from a list of users in food.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
myusername | |
yourusername | |
thatdogsusername | |
yurausername |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Be sure to chmod +x omnom.sh to make it executable | |
for i in $(cat food.txt) | |
do | |
twint --elasticsearch localhost:9200 -u $i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment