timestamper/.ide/line-count.pl
Jonathan Bernard 99d04935cb Implemented timeline selection.
* Added personal VIM ide extension.
* Implemented timeline selection (resolves D0007)
* Slightly restyled the new timeline button and timeline list menu.
2011-06-10 11:49:45 -05:00

21 lines
235 B
Perl
Executable File

#!/usr/bin/perl -w
my $lc=0;
my $flc;
my $filename;
while(<>) {
$filename=$_;
chomp($filename);
open(IN,"<$filename");
$flc=0;
while(<IN>) {
$flc++;
$lc++;
}
print "$filename: $flc\n";
}
print "Total: $lc\n";