$ strictv foo.pl $card : 3 $cardcounter : 2 $count : 2 $counter : 3 $i : 5 $number : 2 $suit : 2 $types : 2 @alreadyused : 2 @cards : 6 @iterations : 2 @suit : 2 foo.pl: 12 variables
It's also handy for code that people post on PerlMonks.
=head1 NAME B<strictv> - How (un)strict is your Perl code? =head1 SYNOPSIS strictv file ... =head1 DESCRIPTION Compile (but do not run) a Perl file using the C<strict> pragma. Only variables are checked. Input is a file (or several files). Output is to STDOUT. Example: strictv foo.pl =cut use warnings FATAL => 'all'; use strict; use List::Util qw(max); use English qw(-no_match_vars); for my $file (@ARGV) { $CHILD_ERROR = 0; my @errs = qx(perl -Mstrict=vars -c $file 2>&1); if ($CHILD_ERROR) { my %var; for (@errs) { if (/open perl script/) { print; } elsif (/ "([^"]+)" /x) { $var{$1}++; } } if (%var) { my $width = max(map {length} keys %var); for my $name (sort keys %var) { printf " %-${width}s : %d\n", $name, $var{$name}; } print "$file: ", scalar(keys %var), " variables\n"; } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: strictv -- how unstrict is your code?
by dolmen (Beadle) on Sep 11, 2013 at 15:26 UTC | |
by toolic (Bishop) on Sep 12, 2013 at 00:42 UTC | |
by Corion (Patriarch) on Jul 22, 2015 at 18:57 UTC |