1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00
samba-mirror/source3/script/count_80_col.pl
2007-10-10 12:23:34 -05:00

16 lines
225 B
Perl
Executable File

#!/usr/bin/perl -w
open( INFILE, "$ARGV[0]" ) || die $@;
$count = 0;
while ( <INFILE> ) {
$count++ if (length($_) > 80);
}
close( INFILE );
print "$ARGV[0]: $count lines > 80 characters\n" if ($count > 0);
exit( 0 );