Created
December 1, 2013 00:43
-
-
Save mahemoff/7727219 to your computer and use it in GitHub Desktop.
Find common followers of 2 Twitter accounts using https://github.com/sferik/t
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/bash | |
t followers $1 > /tmp/followers1.$$.txt | |
t followers $2 > /tmp/followers2.$$.txt | |
comm -12 /tmp/followers1.$$.txt /tmp/followers2.$$.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment