added dev-only script to test system probes
[scpubgit/System-Introspector.git] / dev-gather.pl
CommitLineData
90d22dbe 1#!/usr/bin/env perl
2use strictures 1;
3use lib qw( lib );
4use Data::Dump qw( pp );
5use Module::Runtime qw( use_module );
6
7my $intro = shift(@ARGV)
8 or die "Probe argument required\n";
9
10pp(use_module("System::Introspector::$intro")->new->gather);