1 #!/usr/bin/perl -- -*- mode: cperl -*-
5 rrr-overview - summarize the dataset
9 rrr-news [options] principal_recentfile
17 my $optpod = <<'=back';
21 Prints a brief message and exists.
31 rersyncrecent is a project to get speedy rsync operation on large
32 trees over multiple hosts. It maintains a collection of files with
33 metadata (so called recentfiles) that represent adjacent or
34 overlapping timespans of file change events.
36 rrr-overview summarizes the contents of the recentfiles.
43 use File
::Rsync
::Mirror
::Recent
;
45 use Pod
::Usage
qw(pod2usage);
48 my @opt = $optpod =~ /B<--(\S+)>/g;
60 } elsif (0 == @ARGV and -f
"RECENT.recent") {
61 @ARGV = "RECENT.recent";
62 } elsif (1 == @ARGV) {
67 my $rf = File
::Rsync
::Mirror
::Recent
->new
73 push @args, "verbose", $Opt{verbose
};
75 print $rf->overview(@args);
83 # cperl-indent-level: 4