The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/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"; }