Help for this page

Select Code to Download


  1. or download this
    # Outputs file in DOS format.
    # Accepts input files in unix format.
    ...
       open my $fh_out, ...;
       print $fh_out while <$fh_in>;
    }
    
  2. or download this
    # Outputs file in DOS format.
    # Accepts input files in unix format.
    ...
          print $fh_out "$_\r\n" 
       }
    }
    
  3. or download this
    # Outputs file in DOS format.
    # Accepts input files in unix, DOS and Mac formats.
    ...
       binmode($fh_out);
       print $fh_out $text;
    }
    
  4. or download this
    # Outputs file in local format.
    # Accepts input files in unix, DOS and Mac formats.
    ...
       open my $fh_out, ...;
       print $fh_out $text;
    }