#!/usr/bin/perl -w use strict; my $file = "go.txt"; print "\nOpening $file\n"; open(FILE, "< $file") || die "OLD FILE ERROR: Unable to open file: $!\n"; open(OUT, "> $file.new") || die"NEW FILE ERROR: Unable to create new file: $!\n"; my $data=join('',);