Help for this page

Select Code to Download


  1. or download this
    # open a new file and transfer bit by bit from what's in the buffer
        open( SAVED, ">>$localfile" );    # || die $!;
    ...
            print SAVED $buffer;
        }
        close SAVED;