ImJustAFriend has asked for the wisdom of the Perl Monks concerning the following question:
If you see anything wrong or have any thoughts on where I can go from here (went about 40 different ways today and all dead ends), I would appreciate any assistance.foreach my $server (@servers) { open IN2, "<", $provinfile.$server or die "Could not open Serv +er IN2 ($provinfile.$server): $!\n"; open OUT2, ">", $provoutfile or die "Could not open OUT2: $!\n +"; while (<IN2>) { if (/\<13\>/../END OF REPORT/) { #next if /PROXY500/ || /END OF REPORT/; print OUT; } } } close(OUT2); close(IN2);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Phantom "No such file" issue
by Athanasius (Archbishop) on Nov 02, 2018 at 02:53 UTC | |
by ImJustAFriend (Scribe) on Nov 02, 2018 at 14:27 UTC |