mirror of
git://projects.qi-hardware.com/wernermisc.git
synced 2024-11-15 14:10:38 +02:00
18 lines
242 B
Perl
Executable File
18 lines
242 B
Perl
Executable File
#!/usr/bin/perl
|
|
$on = 1;
|
|
while (<STDIN>) {
|
|
$line = $_;
|
|
if (/^#%id=/) {
|
|
chop($id = $');
|
|
$on = 1;
|
|
for (@ARGV) {
|
|
if ($_ =~ /^!/) {
|
|
$on = 0 if $id =~ $';
|
|
} else {
|
|
$on = 0 unless $id =~ $_;
|
|
}
|
|
}
|
|
}
|
|
print $line if $on;
|
|
}
|