Help Required on the Below Script

2006-06-14 Thread Mazhar
Hello, I am writing perl on windows installing Activestate Perl and the code is reading a text file and processing it, the code what i use is... ## use strict; use warnings; my $file_name=".txt"; open(FILE,"$file_name") || die "Not been Accessed"; while

Re: Help Required on the Below Script

2006-06-14 Thread Prabu Ayyappan
On 6/14/06, Mazhar <[EMAIL PROTECTED]> wrote: Hello, I am writing perl on windows installing Activestate Perl and the code is reading a text file and processing it, the code what i use is... ## use strict; use warnings; my $file_name=".txt"; open(FILE

Re: Help Required on the Below Script

2006-06-14 Thread Mr. Shawn H. Corey
On Wed, 2006-14-06 at 15:59 +0400, Mazhar wrote: > Hello, > > I am writing perl on windows installing Activestate Perl and the code is > reading a text file and processing it, > > the code what i use is... > > ## > use strict; > use warnings; > > my $file_name="X

Re: Help Required on the Below Script

2006-06-14 Thread John W. Krahn
Mazhar wrote: > Hello, Hello, > I am writing perl on windows installing Activestate Perl and the code is > reading a text file and processing it, > > the code what i use is... > > ## > use strict; > use warnings; > > my $file_name=".txt"; > > open(FILE,

Re: Help Required on the Below Script

2006-06-14 Thread Mazhar
Thanks everybody for the support.. it is working fine.. Regards Mazhar On 6/14/06, John W. Krahn <[EMAIL PROTECTED]> wrote: Mazhar wrote: > Hello, Hello, > I am writing perl on windows installing Activestate Perl and the code is > reading a text file and processing it, > > the code what i

Re: Help Required on the Below Script

2006-06-14 Thread JupiterHost.Net
Hello, use strict; use warnings; Excellent use of those :) my $file_name=".txt"; open(FILE,"$file_name") || die "Not been Accessed"; Good that you checked for failure, why not also report the error ... Also, don't double quote strings that have nothing to be interpolated or are