mariadb/Docs/Support/generate-text-files.pl

44 lines
613 B
Perl
Raw Normal View History

#!/usr/bin/perl -w -*- perl -*-
2000-07-31 21:29:14 +02:00
# Generate text files from top directory from the manual.
$from = shift(@ARGV);
$fnode = shift(@ARGV);
$tnode = shift(@ARGV);
open(IN, "$from") || die "Cannot open $from: $!";
2000-07-31 21:29:14 +02:00
$in = 0;
while (<IN>)
{
if ($in)
{
if (/Node: $tnode,/)
{
$in = 0;
}
elsif (/^File: mysql.info/ || (/^/))
{
# Just Skip node beginnings
2000-07-31 21:29:14 +02:00
}
else
{
print;
}
}
else
{
if (/Node: $fnode,/)
{
$in = 1;
# Skip first empty line
<IN>;
}
}
}
close(IN);
die "Could not find node \"$tnode\"" if ($in == 1);
exit 0;