File: lsmount

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

use blib;
use AFS::FS qw(lsmount);

my ($path, $vol);

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

$path = shift;

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

if (defined $vol) {
    print "\'$path\' is a mount point for volume \'$vol\' \n";
}
elsif ($path =~ /\.$/) {
    print "you may not use '.' or '..' as the last component of the path name \n";
}
else {
    print "\'$path\' is not a mount point \n";
}