in reply to Re^4: Different perl behavior between V5.10 and V5.14
in thread Different perl behavior between V5.10 and V5.14
while (1) { while(1) { my $line = <TAIL>; if (!defined($line)) { redo if $! eq 'Interrupted system call'; last; } print $line; } printf "Fell through...\n"; }
-mark
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Different perl behavior between V5.10 and V5.14
by vsespb (Chaplain) on Apr 01, 2013 at 18:03 UTC |