File: cm_access

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 (16 lines) | stat: -rwxr-xr-x 297 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/local/bin/perl -w

use blib;

use AFS::CM qw (cm_access);
use AFS::ACL;

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

my $path = shift;
my $perms = shift;

my $ok = cm_access($path, AFS::ACL->crights($perms));
print "AFS::CODE = $AFS::CODE (", ($AFS::CODE+0), ")\n";
print "ok = $ok\n";