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(rmmount);

my ($mountp, $ok);

die "Usage: $0 mountp\n" if ($#ARGV == -1);

$mountp = shift;

$ok = rmmount($mountp);
if ($AFS::CODE) { print "AFS::CODE = $AFS::CODE\n"; }
else            { print "ok rmmount = $ok\n"; }