mirror of
git://projects.qi-hardware.com/ben-wpan.git
synced 2024-11-22 19:57:31 +02:00
5733b60721
This file is part of the production documentation build process but was never committed.
19 lines
262 B
Perl
Executable File
19 lines
262 B
Perl
Executable File
#!/usr/bin/perl
|
|
$key = shift @ARGV;
|
|
$skip = 0;
|
|
$skipping = 0;
|
|
while (<>) {
|
|
if (/^#/ && $. != 1) {
|
|
$skip = $_ !~ /$key/;
|
|
print unless $skip;
|
|
next;
|
|
}
|
|
if (/^\s/) {
|
|
print unless $skipping;
|
|
next;
|
|
}
|
|
print unless $skip;
|
|
$skipping = $skip;
|
|
$skip = 0;
|
|
}
|