I want to slurp a file and make multiple blank lines into single blank
lines. Here is my code:
#! perl -w
use strict;
my $file = "test.fmt";
open (IN, $file) or die;
open (OUT, ">>test.txt");
my $text;
{
local $/;
$text = ;
close IN;
}
# $text =~ s/\0{2,}/\0\0/mg; # this removes
I am using perl 5.6.1 with NT. From a dos prompt I said "perl -de 0"
expecting to start up the debug invironment but got the following message:
default die handler restored
Unable to connect to remote host: 127.0.0.1:2000
Compilation failed to require
Begin failed - compilation aborted
I tri
I would like to install and test this module on an NT system but I am not
having good luck. Any help would be appreciated.
LM