Linux::Mounts - perl module providing object oriented interface to /proc/mounts


Linux-Mounts documentation  | view source Contained in the Linux-Mounts distribution.

Index


NAME

Top

Linux::Mounts - perl module providing object oriented interface to /proc/mounts

SYNOPSIS

Top

	use Linux::Mounts;

	my $mtd  = Linux::Mounts->new();
	my $list = $mtd->list_mounts();

	print "Number of mounted file systems : ", $mtd->num_mounts(), "\n\n";

	print "List of mounted file systems :\n";
	for (my $i = 0; $i < $mtd->num_mounts(); $i++) {
		for (my $j = 0; $j < $#{ $list }; $j++) {
			printf("%-15s", $list->[$i][$j]);
		}
		print "\n";
	}

	### or simplier ...

	print "\nList of mounted file systems :\n";
	$mtd->show_mount();

DESCRIPTION

Top

This module provides an interface to the file /proc/mounts. The implementation attempts to resemble to the "mount" linux command.

METHODS

Display the number of mounted file systems.

Provide a double array of the /proc/mounts parameters.

Show all the mounted file systems.

AUTHOR

Top

Stephane Chmielewski <snck@free.fr>

COPYRIGHT

Top


Linux-Mounts documentation  | view source Contained in the Linux-Mounts distribution.