http://qs1969.pair.com?node_id=1054121


in reply to use of telnet in perl

This:

for($i=26;$i<=40;$i++) { my @array = `awk 'NR==$i' out1.log`;

is very inefficient. Why would you shell out 15 separate times just to retrieve one line of input each time? Why do you then run a foreach on an array which by definition will have only one element? There doesn't seem much logic to this, TBH.

Ignore the telnet part while fixing the post-processing. Just save one instance of out1.log and run your post-processing on that until it works. If you still have problems, come back here with sample input, sample output and desired output and then we might be able to offer some further advice.

Good luck