- or download this
use strict;
use IO::File;
...
my $CRLF = "\015\012";
print $fh "test",$CRLF;
close $fh;
- or download this
my $CRLF = "\015\012"; # "\r\n" is not portable
- or download this
my $content = $response->content;
...
$content = join("\n",@$cjunk);
}
}