AFS

 view release on metacpan or  search on metacpan

examples/v2/cm/getvolstats  view on Meta::CPAN

#!/usr/local/bin/perl

use blib;
use strict;
use warnings;

use AFS::CM qw(getvolstats);

my ($path, $stats);

die "Usage: $0 path\n" if $#ARGV != 0;

$path = shift;

$stats = getvolstats($path);
if ($AFS::CODE) { print "AFS::CODE = $AFS::CODE\n"; }
else {
    foreach my $key (sort keys %$stats) {
        printf("%20s  %s\n", $key, $$stats{$key});
    }
}



( run in 0.611 second using v1.01-cache-2.11-cpan-ceb78f64989 )