Files
SWG_Client_Next_Main/exe/shared/lintScripts.pl
T
2016-06-01 15:00:39 -04:00

13 lines
182 B
Perl

#!/usr/bin/perl
opendir(SCRIPTLINT, $ARGV[0]);
@lints = readdir(SCRIPTLINT);
foreach $lint (@lints)
{
if($lint =~ /.pl/)
{
system("perl $ARGV[0]/$lint $ARGV[1]");
}
}