wgetする (module)LWP-Simple

back
http://search.cpan.org/~gaas/libwww-perl-5.800/

use LWP::Simaple;
$content = get('http://www.example.org/index.html');

index.html の内容が、$content に格納される。

ファイルの get に失敗した場合は undef が返るので、defined でハンドリングする。

back