]> CyberLeo.Net >> Repos - FreeBSD/releng/9.0.git/blob - contrib/nvi/perl_scripts/wc.pl
Copy stable/9 to releng/9.0 as part of the FreeBSD 9.0-RELEASE release
[FreeBSD/releng/9.0.git] / contrib / nvi / perl_scripts / wc.pl
1 sub wc {
2   my $words;
3   $i = $VI::StartLine;
4   while ($i <= $VI::StopLine) {
5     $_ = $curscr->GetLine($i++);
6     $words+=split;
7   }
8   $curscr->Msg("$words words");
9 }
10
11 1;