in reply to Re: Re: dos EOF in linux
in thread dos EOF in linux

As far as I know this isnt an issue. But im a win32 user. :-)

And may I point out that

while ( my $line = <INPUT_HANDLE>) {
is not the same as (excepting the variable used)
while ( <INPUT_HANDLE> ) {
I believe that should read
while ( defined ( my $line= <INPUT_HANDLE> ) ) {
But personally I dont see the point. You shouldnt be afraid of using $_.

--- demerphq
my friends call me, usually because I'm late....