PMLTQ-Commands

 view release on metacpan or  search on metacpan

lib/PMLTQ/Command.pm  view on Meta::CPAN



sub run {
  die 'Override by parent class';
}

sub extract_usage {
  my $self = shift;

  open my $handle, '>', \my $output;
  pod2usage( -exitval => 'NOEXIT', -input => (caller)[1], -output => $handle );
  $output =~ s/\n$//;

  return $output;
}

sub help {
  print shift->usage;
}

sub _db_connect {



( run in 0.413 second using v1.01-cache-2.11-cpan-a3c8064c92c )