我正在寻找一种通过cli(bash)检索包含特定twitter标签的最新推文的方法。有点像“./get-tweet.sh blah”那样的东西,并且返回“Dude我感觉如此#blah”谢谢!
看起来我可以通过这样做来获取RSS Feed:
curl -s'http://search.twitter.com/search.rss?q=%23blah&rpp=1'
然后我只需要删除正确的xml
答案 0 :(得分:1)
答案 1 :(得分:0)
好的,我一起解决了一个问题:
curl -s“http://search.twitter.com/search.rss?q=%23 $ 1& rpp = 1”> /tmp/hashtag.xml
xmllint --xpath'/ rss / channel / item / title / text()'/ tmp / hashtag.xml | sed's / http \://t.co/*//g'| sed's /#// g'| sed's / @ // g'| xargs -i -0 echo -n“{}” 回声
rm /tmp/hashtag.xml