Help for this page

Select Code to Download


  1. or download this
    while (my $zeichen = getc($handle1))
    
  2. or download this
    while (defined ( my $zeichen = getc($handle1) ) )
    
  3. or download this
    if ($buffer =~ /IEND/) {
        print $handle2 $buffer;
    ...
        print $handle2 $buffer; ### 2
        exit;
    }