The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl -w

use Freq;

my $indexname = shift;
#my $index = Freq->open_read($indexname); # make sure it exists
#die unless $index;
#$index->close_index;

Freq::optimize_index($indexname);

exit;