Skip to content

Instantly share code, notes, and snippets.

@pr1ntf
Created December 29, 2018 23:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pr1ntf/d91fbf5be61ee008b11dd64a9482023b to your computer and use it in GitHub Desktop.
Save pr1ntf/d91fbf5be61ee008b11dd64a9482023b to your computer and use it in GitHub Desktop.
Gobble twitter data from a list of users in food.txt
myusername
yourusername
thatdogsusername
yurausername
#!/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