Get Twitter timeline from the CLI
We already know how to update Twitter from the command line. To get your and your friends’ timeline from the CLI, use the following one-liner:
curl -u username --silent "https://twitter.com/statuses/friends_timeline.rss" | perl -ne 'print "$2\n" if /< (description)>(.*)< \/\1>/;'
Using the same method, you can also get unread Gmail inbox messages (via commandlinefu.com).
Read more:
- Twitter updates, via CLI
- Twitter status RSS broken?
- New from GMail: ‘Web clips’
- Gmail with Mutt
- GMail on IMAP
No Comments Yet