Probe::MachineInfo::OS - OS Name


Probe-MachineInfo documentation Contained in the Probe-MachineInfo distribution.

Index


Code Index:

NAME

Top

Probe::MachineInfo::OS - OS Name

SYNOPSIS

Top

blah

DESCRIPTION

Top

blah

PUBLIC INTERFACE

Top

get

 get()

AUTHOR

Top

Sagar R. Shah


Probe-MachineInfo documentation Contained in the Probe-MachineInfo distribution.
package Probe::MachineInfo::OS;


# pragmata
use base qw(Probe::MachineInfo::Metric);
use strict;
use warnings;


# Standard Perl Library and CPAN modules
use English;
use POSIX qw(uname);

#
# CLASS ATTRIBUTES
#

#
# CONSTRUCTOR
#


sub get {
	my ($self) = @_;

	return (uname)[0];
}

1;