Macターミナルからtwitterを利用する

MacにRubyをインストールする

> ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go)
> sudo port uninstall ruby
> rvm implode
> brew install rbenv
> brew install ruby-build
> echo ‘eval “$(rbenv init -)”‘ >> ~/.bash_profile
> source ~/.bash_profile
> CONFIGURE_OPTS=”–with-readline-dir=/usr/local –with-openssl-dir=/usr/local” rbenv install 2.0.0-p247
> rbenv rehash
> rbenv global 2.0.0-p247
> rbenv version
> brew install readline
> brew link readline
> brew install openssl
> brew link openssl

ターミナルtwitterクライアン「tw」をインストールする
> sudo gem update –system
> sudo gem install tw

使い方:
・ツイートする
tw ツイート本文

・特定のユーザーのツイートを参照する
tw @ツイッター名

・文字列検索
tw –search=検索後

その他いろいろ使い方:
Tw – Twitter client on Ruby v0.5.2
http://shokai.github.io/tw

options:
-user (-u) user account
-user:add add user
-user:list show user list
-user:default set default user
-timeline (-tl) show timeline
-dm show direct messages
-dm:to create direct message
-favorite (-fav) favorite tweet
-retweet (-rt) retweet
-search (-s) search public timeline
-stream (-st) show user stream
-status_id (-id) show status_id
-file upload file
-pipe pipe tweet
-format output format : default – text
-silent silent mode
-yes do not show dialogue
-conf config file : default – /Users/furukawaryuji/.tw.yml
-version (-v) show version
-help (-h) show help

e.g.
tweet tw hello world
echo ‘hello’ | tw –pipe
tw ‘yummy!!’ –file=food.jpg –yes
read tw @username
tw @username @user2 @user2/listname
tw –search=ruby
tw –stream
tw –stream:filter=ruby,java
tw –dm:to=username “hello!”
id tw @shokai –id
tw @shokai –id=334749349588377601
reply tw “@shokai wow!!” –id=334749349588377601
tw –fav=334749349588377601
tw –rt=334749349588377601
tw –format=json
tw –format=”@#{user} #{text} – http://twitter.com/#{user}/#{id}”

via 橋本商会 ? ターミナルで使うtwitterクライアント作った.

コメント

タイトルとURLをコピーしました