1
0
mirror of git://projects.qi-hardware.com/ben-wpan.git synced 2024-11-23 00:28:26 +02:00
ben-wpan/prod/doc/figfilt

19 lines
262 B
Plaintext
Raw Normal View History

#!/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;
}