ShowUndocumented
上传用户:pycemail
上传日期:2007-01-04
资源大小:329k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. #!/usr/bin/perl
  2. open(DOC,"grep '<li><a href="#' Configuration.html | cut -d'"' -f2 | cut -d'#' -f2 | sort|");
  3. while(<DOC>) {
  4.     chomp;
  5.     $doc{$_} = 1;
  6. }
  7. open(UNDOC,"./GetConf ../*/*.c|");
  8. while(<UNDOC>) {
  9.     chomp;
  10.     s/^s+//;
  11.     s/s+$//;
  12.     s/^<//;
  13.     s/^///;
  14.     s/>$//;
  15.     
  16.     next unless length($_) > 0;
  17.     
  18.     if(/^Module ([^s]*):$/) {
  19. $module = $1;
  20. $newmod = 1;
  21. next;
  22.     }
  23.     
  24.     if(!$doc{$_}) {
  25. if($newmod) {
  26.     print "nModule: $modulen";
  27.     $newmod = 0;
  28. }
  29. print "  $_n";
  30.     }
  31. }