#!/usr/bin/perl

use strict;

my @objs = @ARGV;

print <<END
$0: Try to retrieve PerfLib variables/values

Syntax: $0 [group1] [group2] [...]

END
;

use lib "uxmon";
use Monitor::PerfLib;

Monitor::PerfLib::test( @objs );
