in reply to A looping and format question...
If the above test evaluates to true, you should also exit the OUTER loop, thus;write STDOUT if defined($registrant and $admin and $tech and $billing +and $names[2] and $expires);
Otherwise the loop will keep on recurring and print your results several times.if defined($registrant and $admin and $tech and $billing and $names[2] + and $expires){ write STDOUT; last OUTER; }
|
|---|