Re: PerlCheck Program

2001-03-19 Thread $Bill Luebkert
Dirk Bremer wrote: Here is the latest version of my PerlCheck program with some new features and my first shot at POD documentation. Use it in good health and give me any suggestions. My suggestion would be to get a free website and store it there for download and just post a change notice

Re: PerlCheck Program

2001-03-12 Thread Dirk Bremer
Here is the latest version of my PerlCheck program. Dirk Bremer - Systems Programmer II - AMS Department - NISC 636-922-9158 ext. 652 fax 636-447-4471 mailto:[EMAIL PROTECTED] # PerlCheck.pl 03/09/2001. # Define pragmas. use diagnostics; use English; use strict; use warnings; # Define

Re: PerlCheck Program

2001-02-20 Thread Carl Jolley
On Tue, 20 Feb 2001, Dirk Bremer wrote: Ron, I do not believe that -w and use strict will identify variables that have been defined but are never accessed. It does not recognize the 'constant' pragma, I do not know what it is so have never used it. It searches for the string 'sub ' to

Re: PerlCheck Program

2001-02-20 Thread Carl Jolley
On Tue, 20 Feb 2001, Dirk Bremer wrote: Here is version 3 of the PerlCheck program. It runs much faster now, skipping several types of lines that do not need to be checked. It also does a better job of locating variables and subroutines, they do not need to be defined at the beginning

Re: PerlCheck Program

2001-02-19 Thread Ron Grabowski
Attached is a handy little program I wrote that will insure that all variables and subroutines that have been declared within a script are actually referenced by the script. It is handy for finding variables that have been defined but are never used within a script. What things does it catch