- or download this
# Outputs file in DOS format.
# Accepts input files in unix format.
...
open my $fh_out, ...;
print $fh_out while <$fh_in>;
}
- or download this
# Outputs file in DOS format.
# Accepts input files in unix format.
...
print $fh_out "$_\r\n"
}
}
- or download this
# Outputs file in DOS format.
# Accepts input files in unix, DOS and Mac formats.
...
binmode($fh_out);
print $fh_out $text;
}
- 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;
}