AFS
view release on metacpan or search on metacpan
examples/v2/fs/setquota view on Meta::CPAN
#!/usr/local/bin/perl
use blib;
use strict;
use warnings;
use AFS::FS qw(setquota);
my ($path, $quota, $ok);
die "Usage: $0 path quota\n" if ($#ARGV == -1);
$path = shift;
$quota = shift;
$ok = setquota($path, $quota);
if ($AFS::CODE) { print "AFS::CODE = $AFS::CODE\n"; }
else { print "ok setquota = $ok\n"; }
( run in 0.571 second using v1.01-cache-2.11-cpan-39bf76dae61 )