FlashMX wrote:
Got it so far.

open CHECKFILE, "< file.in" or die qq(Cannot open file "file.in": $!);
        @filecontent = <INFILE>;
        foreach $line (@filecontent) {
                print " $line";
        }
close (INFILE);

If that's the only code you are able to put together for accomplishing the task you described in another message, it's not reasonable IMO to ask this list for help now. You'd better take a step back, read a good (Perl beginners) book and play with some exercises.


--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>




Reply via email to