in reply to Too much recursion
while (<>) { /^hostname/ and do { $host_section = 1; ++$tot; # number of hostnames }; if ($host_section) { print $_; ++$tot2; # lines in host sections # do some processing... } /^end-of-hostname-pattern/ and do { $host_section = 0; }; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Too much recursion
by locked_user sundialsvc4 (Abbot) on Jun 28, 2013 at 03:09 UTC |