yharaさんがとなりでRubyでtwitterの新着を読み上げさせてみるをやっているときにMacでやってみたやつ. use strict; use warnings; use XML::Feed; use URI; use Perl6::Say; my $FEEDURI = shift; my $feed = XML::Feed->parse( URI->new($FEEDURI),); for my $entry ($feed->entries) { say $entry->title . '.'; say $entry->content->body . '.'; } というのをsay_xml.plという名前で保存して実行してやると,RSSの中身がテキストではかれるので, $ perl say_xml.pl http://digg.com/rss/indexprogramming.xm