home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Spezial / SPEZIAL2_97.zip / SPEZIAL2_97.iso / ANWEND / EDITOR / NVI179B / NVI179B.ZIP / perl_scripts / wc.pl < prev   
Text File  |  1996-07-02  |  171b  |  12 lines

  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;
  12.