Help for this page

Select Code to Download


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