- or download this
use warnings;
use strict;
...
print $ofh $data;
close $ofh;
}
- or download this
use warnings;
use strict;
...
s/Marry Had A\nLittle Lamb\nShe Was GOOD\n/CHANGED!!!\n/smg;
});
}
- or download this
perl -wMstrict -0777 -i -pe 's/Marry Had A\nLittle Lamb\nShe Was GOOD\
+n/CHANGED!!!\n/smg' Test*_Copy
- or download this
use warnings;
use strict;
...
print $outfh $data;
$repl->finish;
}
- or download this
use warnings;
use strict;
...
print $fh $data;
close $fh;
}