4
0

maser-oracle.pl 235 B

12345678910111213
  1. #!/usr/bin/perl
  2. # Oracle plugin submitted by Christopher Maser (maser@onvista.de)
  3. # 12/31/1999
  4. my $host=$ARGV[0];
  5. my @test=`tnsping $host`;
  6. my $arg=$test[6];
  7. chomp $arg;
  8. if ($arg =~ /^OK (.*)/)
  9. {print "$arg"; exit 0}
  10. else {exit 2;}