On Wed, 11 Jul 2001, Rizwan wrote:
> I am looking for a module that checks the syntax of a perl script.
the -c command-line option to Perl will check your syntax:
perl -c
On Wed, Jul 11, 2001 at 12:21:10PM +0500, Rizwan wrote:
> I am looking for a module that checks the syntax of a perl script.
You don't need a module. Assuming your script is named "test.pl":
> perl -wc test.pl
if it complains, you have a compilation error, which includes syntax errors.
I
On Wed, Jul 11, 2001 at 12:21:10PM +0500, Rizwan wrote:
> I am looking for a module that checks the syntax of a perl script.
perl -c script
--
Paul Johnson - [EMAIL PROTECTED]
http://www.pjcj.net
Hello Rizwan,
Wednesday, July 11, 2001, Rizwan <[EMAIL PROTECTED]> wrote:
R> I am looking for a module that checks the syntax of a perl script.
hm. why don't you use perl itself? or, may be, eval()?
Best wishes,
Maximmailto:[EMAIL PROTECTED]
HI!
I am looking for a module that checks the syntax of a perl script.
Thank you.
Rizwan