Skip to content

Instantly share code, notes, and snippets.

@minikomi
Created October 30, 2012 10:27
Show Gist options
  • Select an option

  • Save minikomi/3979482 to your computer and use it in GitHub Desktop.

Select an option

Save minikomi/3979482 to your computer and use it in GitHub Desktop.
bash twitter search
curl http://search.twitter.com/search.json?q=yo |
grep -Po '"from_user":.*?[^\\]"|"text":.*?[^\\]"' |
awk -F\" '{$1=$2=$3="";print}' |
perl -pe '$_ = "\e[1;31m$_\e[m:" if($. % 2); s/[\n]// if($. % 2)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment