- or download this
open (my $INFILE_1, '<', 'name_o_file.txt') ||
croak "Cannot open input file: $!\n";
- or download this
open(my $CDA1, '<', 'cda1_raw.txt') ||
croak "Cannot open input file 1: $!\n";
...
close $CDA1;
close $CDA2;
- or download this
open(my $CDA1, '<', 'cda1_raw.txt') ||
croak "Cannot open input file 1: $!\n";
...
close $CDA2;
close $CDA3;
close $CDA4;
- or download this
sub report_one {
...
close $OUT;
return;
}