generate-text-files.pl
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/my/gnu/bin/perl -w -*- perl -*-
  2. # Generate text files from top directory from the manual.
  3. $from = shift(@ARGV);
  4. $fnode = shift(@ARGV);
  5. $tnode = shift(@ARGV);
  6. open(IN, "$from") || die;
  7. $in = 0;
  8. while (<IN>)
  9. {
  10.   if ($in)
  11.   {
  12.     if (/Node: $tnode,/)
  13.     {
  14.       $in = 0;
  15.     }
  16.     elsif (/^File: mysql.info/ || (/^/))
  17.     {
  18.       # Just Skip node begginigs
  19.     }
  20.     else
  21.     {
  22.       print;
  23.     }
  24.   }
  25.   else
  26.   {
  27.     if (/Node: $fnode,/)
  28.     {
  29.       $in = 1;
  30.       # Skip first empty line
  31.       <IN>;
  32.     }
  33.   }
  34. }
  35. close(IN);