Help for this page

Select Code to Download


  1. or download this
    my $content = get($url);
    # other stuff...
    die "Could not write: $filename\n$!" unless open(my $fdOut, '>', $file
    +name);
    binmode($fdOut);
    syswrite($fdOut, $content, length($content));
    close($fdOut);
    
  2. or download this
    use Encoding;
    
    my $content = get($url);
    ...
    binmode($fdOut);
    syswrite($fdOut, $content, length($content));
    close($fdOut);