From: mitty <mitty@7d2118f6-f56c-43e7-95a2-4bb3031d96e7>
Date: Sat, 1 Jan 2011 06:01:50 +0000 (+0000)
Subject:  * accept one character options
X-Git-Url: http://lab.mitty.jp/git/?a=commitdiff_plain;h=5fa546f5c2cf727d3ad1f9bf52f36d89c81597de;p=lab.git

 * accept one character options
  * user_timeline => u
  * retweeted_by_me => r
  * msentions => m

git-svn-id: https://lab.mitty.jp/svn/lab/trunk@101 7d2118f6-f56c-43e7-95a2-4bb3031d96e7
---

diff --git a/Dev/twitter/dump_timeline.pl b/Dev/twitter/dump_timeline.pl
index 1fa8121..95385e4 100755
--- a/Dev/twitter/dump_timeline.pl
+++ b/Dev/twitter/dump_timeline.pl
@@ -18,7 +18,7 @@ use Encode;
 my $help = sub {
     die <<EOM;
 usage: $0
-    [user_timeline(default)|retweeted_by_me|mentions
+    [{u}ser_timeline(default)|{r}etweeted_by_me|{m}sentions
         [screen_name
             [number_of_pages|all
                 [dump]
@@ -61,13 +61,13 @@ eval {
         ;
     
         my $res;
-        if ($method eq 'user_timeline') {
+        if ($method eq 'user_timeline' || $method eq 'u') {
             $res = $bot->user_timeline($param);
         }
-        elsif ($method eq 'retweeted_by_me') {
+        elsif ($method eq 'retweeted_by_me' || $method eq 'r') {
             $res = $bot->retweeted_by_me($param);
         }
-        elsif ($method eq 'mentions') {
+        elsif ($method eq 'mentions' || $method eq 'm') {
             $res = $bot->mentions($param);
         }
         else {