From 33e956f64fb7c7f439e90ab150bd300bf1f4d02e Mon Sep 17 00:00:00 2001 From: mitty Date: Mon, 13 Sep 2010 12:32:55 +0000 Subject: [PATCH] * skip unimportant elements from the Dump git-svn-id: https://lab.mitty.jp/svn/lab/trunk/twitter@51 7d2118f6-f56c-43e7-95a2-4bb3031d96e7 --- show_status.pl | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/show_status.pl b/show_status.pl index 887654a..59658cb 100755 --- a/show_status.pl +++ b/show_status.pl @@ -28,7 +28,20 @@ eval { foreach my $id (@ARGV) { my $res = $bot->show_status($id); use Data::Dumper; - print Dumper $res; + foreach my $line (split /\n/, Dumper $res) { + if ($line =~ /undef/) { next; } + unless ($line =~ / => {/ + || $line =~ / = / + || $line =~ /status/ + || $line =~ /'text'/ + || $line =~ /created/ + || $line =~ /'id'/ + || $line =~ /name/ + || $line =~ / },/ + || $line =~ / };/ + ) { next; } + print $line, "\n"; + } } }; if ($@) { -- 1.7.9.5