http://qs321.pair.com?node_id=1025691


in reply to Re^3: <> oddity ?
in thread <> oddity ?

OK, got it solved and understood now, thanks.

I actually just want NOT to read from STDIN when there is a file given in the command line, and stop reading when that file is exhausted.

Turns out that I should NOT any further $line = <> once that hit EOF, because the immediate next attempt to do so will just open STDIN.

Ahaa... :)

Thank you.