Lazy Perl:
open FH, '<', 'input.txt';
undef $/; # don't split on newlines, just read the whole thing
# binmode FH;
$contents = <FH>;
close FH;
open FH, '>', 'output.txt';
# binmode FH;
print FH $contents;
close FH;
Insert binmode FH after the opens for binary mode.
Even lazier (and hackish) Perl:
$contents = do { local (@ARGV, $/) = 'input.txt'; <> }; # binmode ARGV; before <>
print {do {open my $fh, '>output.txt'; $fh}} $contents; # binmode $fh; before }
Very lazy Perl (reuse of code is good!):
use File::Slurp;
$contents = read_file('input.txt'); # or read_file(..., binmode => ':raw')
write_file('output.txt', $contents); # or write_file(..., binmode => ':raw')
