Help for this page

Select Code to Download


  1. or download this
    open(OUTPUT, '>output.file');
    while($tel->recv($buffer, 512)) { print OUTPUT $buffer; }
    close OUTPUT;
    
  2. or download this
    my $output = IO::File->new_tmpfile();
    while($tel->recv($buffer, 512)) { $output->print($buffer); }