*************************************** 1234 pass 25 30 1 pass 25 30 2 1965 pass 35 45 1 pass 35 45 2 #### use strict; use warnings; set LINES=40; set COLUMNS=80; open(my $in , "<" , "UR59_rev162_1KLoops_LastRun_SITEC1.txt") or die "can't open input.txt $!"; open(my $out , ">" , "UR59_rev162_1KLoops_LastRun_SITEC1_deleted.txt") or die "can't open out.txt $!"; while(<$in>) { if( $_ != /^\s/) { print $out $_; } }