bind9/bin/tests/system/cds/mangle.pl

18 lines
474 B
Perl
Raw Normal View History

#!/usr/bin/perl
2017-10-05 19:45:49 -04:00
#
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
2017-10-05 19:45:49 -04:00
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# See the COPYRIGHT file distributed with this work for additional
# information regarding copyright ownership.
2017-10-05 19:45:49 -04:00
my $re = $ARGV[0];
shift;
while (<>) {
s{($re)........}{${1}00000000};
print;
}