Help for this page
# examples from the SYNOPSIS use IO::All; ... $content < io('http://example.org'); # GET webpage io('http://example.org') > io('index.html'); # save webpage
my $io = io('http://example.org')->tie; while (<$io>) { # do something }