summaryrefslogtreecommitdiffstats
path: root/reap.pl
blob: 90e532bd0897ea4a5e4343d75b71f34a0a85990e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/local/bin/perl
#
# A small script to strip out any "illegal" PGP code to make sure it is
# safe for International export.
#
$word = shift;
$illegal = 0;
$count = 0;
while (<>)
{
	if (/^#if/)
	{
		if (/${word}/) { $illegal = 1; }
		if ($illegal) { $count++; }
	}
	elsif ($illegal && /^#endif/)
	{
		$count--;
		if ($count == 0)
		{
			$illegal = 0;
			next;
		}
	}
	print if (! $illegal);
}