1package Filter::Simple::ExeNoComments;
2
3use Filter::Simple;
4
5FILTER_ONLY
6  executable_no_comments => sub {
7            $_ =~ /shromplex/ and die "We wants no shromplexes!";
8            s/ABC/TEST/g;
9	};
10
111;
12