in reply to Re: removing the need for tmp files from script
in thread removing the need for tmp files from script
This is clumsy but it works. However, if I try to use the variable assigned to a filehandle in the same way:open my $fh2, '<', '/tmp/mlist.txt' or die "unable to open file '$file +' for reading : $!"; open my $fh9, '>', '/tmp/listk.txt' or die "unable to open file '$file +' for reading : $!"; while (<$fh2>) { my @fields = split(',', $_); local $" = ','; if ($fields[2] eq '1' || $fields[2] eq '0') { print $fh9 "@fields[4]\n" if /MONTHLY/ && !/,-,/; } } close $fh2; close $fh9;
it does work but what happens is that it never stops printing the "file" or the fields4 It continues until out of memory. Is there a way to do this differently? This is probably a very basic question, but I don't have much experience with filehandles which are variables.open my $bpfh1, '<', \$forbpjoutput or die $!; while (<$bpfh1>) { my @fields = split(',', $_); my $fields; local $" = ','; if ($fields[2] eq '1' ||$fields[2] eq '0') { print "THESE ARE THE>>> $fields[4]\n" if /MONTHLY/ && !/, +-,/; close $bpfh1; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: removing the need for tmp files from script
by Cristoforo (Curate) on Jul 25, 2016 at 22:53 UTC | |
by novice2015 (Acolyte) on Jul 29, 2016 at 21:15 UTC | |
|
Re^3: removing the need for tmp files from script
by BillKSmith (Monsignor) on Jul 26, 2016 at 12:19 UTC |