in reply to Re: Re: Newline Delimited Input
in thread Newline Delimited Input

so you are not chomp()ing $dir... are you getting something like
Unsuccessful stat on filename containing newline at...
when you run your script? Did you try chomp()ing the filenames as I suggest here?

hope this helps,

Replies are listed 'Best First'.
Re: Re: Re: Re: Newline Delimited Input
by Anonymous Monk on Jun 11, 2003 at 13:11 UTC
    Thanks for your help!! Adding chomp ( @parts = <IN> ); got everything working correctly.