Skip to content

Instantly share code, notes, and snippets.

@tobinharris
Created May 17, 2010 19:23
Show Gist options
  • Save tobinharris/404121 to your computer and use it in GitHub Desktop.
Save tobinharris/404121 to your computer and use it in GitHub Desktop.
# Find all tweets containing the term Basecamp that were posted to @37signals
# You don't have to pipe to xpath, I just find it easier for understanding the results :)
curl http://search.twitter.com/search.atom?q=basecamp+to:37signals | xpath '//title/text()'
# Find all tweets containing the term Basecamp that were NOT posted to @37signals
curl http://search.twitter.com/search.atom?q=basecamp+-to:37signals | xpath '//title/text()'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment