* Added personal VIM ide extension. * Implemented timeline selection (resolves D0007) * Slightly restyled the new timeline button and timeline list menu.
21 lines
235 B
Perl
Executable File
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";
|