show/hide this revision's text 3 added 88 characters in body

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')
show/hide this revision's text 2 Added in how-to-write instead of referencing Jonathan Lonowski's answer

Lazy Perl:

open FH, '<', 'input.txt';
undef $/;  # don't split on newlines, just read the whole thing
$contents = <FH>;
close FH;
open FH, '>', 'output.txt';
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'; <> };
print {do {open my $fh, '>output.txt'; $fh}} $contents;

Very lazy Perl : (and reuse of code is good!)good!):

use File::Slurp;
$contents = read_file('input.txt');
write_file('output.txt', $contents);
show/hide this revision's text 1

Lazy Perl:

open FH, '<', 'input.txt';
undef $/;  # don't split on newlines, just read the whole thing
$contents = <FH>;

Even lazier (and hackish) Perl:

$contents = do { local (@ARGV, $/) = 'input.txt'; <> }

Very lazy Perl: (and reuse of code is good!)

use File::Slurp;
$contents = read_file('input.txt');
write_file('output.txt', $contents);