File: examine

package info (click to toggle)
libafs-perl 2.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 2,244 kB
  • ctags: 268
  • sloc: perl: 5,159; ansic: 135; sh: 36; makefile: 7
file content (20 lines) | stat: -rwxr-xr-x 533 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/local/bin/perl

use blib;

use strict;
use AFS::CM qw(getvolstats);

my ($path, $stats);

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

$path = shift;

$stats = getvolstats($path);
print "Error Code: $AFS::CODE\n" if ($AFS::CODE);

print "Volume status for vid = $stats->{'Vid'} named $stats->{'Name'} \n";
print "Current disk quota is $stats->{'MaxQuota'} \n";
print "Current blocks used are $stats->{'BlocksInUse'} \n";
print "The partition has $stats->{'PartBlocksAvail'} blocks available out of $stats->{'PartMaxBlocks'} \n";