Skip to content

Instantly share code, notes, and snippets.

@mahemoff
Created December 1, 2013 00:43
Show Gist options
  • Save mahemoff/7727219 to your computer and use it in GitHub Desktop.
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
#!/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