The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
# $Id: svndump_nullrecalcfilter 278 2007-01-13 12:37:13Z martin $
# Copyright (C) 2006 by Martin Scharrer <martin@scharrer-online.de>
# This is free software under the GPL.

use strict;
use SVN::Dumpfilter qw(Dumpfilter null_recalc_filter);

my $dumpfile = shift @ARGV;
my $outfile  = shift @ARGV;

Dumpfilter($dumpfile, $outfile, \&null_recalc_filter);

exit(0);
__END__