Hi
I have a short script :(see below)
My problem is on the system lines syntax it doesnt do what I expect.
Instead of running the bb command send as status dbr-cmrm06.us.ensrv.mgmt.bmc and then cat to the history_test file and send the content to the hobbit server
it prints the following :
`date` `cat /usr/local/hobbit/client/history_test`
Please help
Shai
The script is below :
#!/usr/bin/perl
open(Infile,"</usr/local/hobbit/client/history_test") || die "Cannot open file\n";
my $RedAlertCommand = system ("/usr/local/hobbit/client/bin/bb 172.50.25.99:2984 'status dbr-cmrm06.us.ensrv.mgmt.bmc.trap red `date` `cat /usr/local/hobbit/client/history_test` '");
my $GreenAlertCommand = system ("/usr/local/hobbit/client/bin/bb 172.50.25.99:2984 'status dbr-cmrm01.us.ensrv.mgmt.bmc.trap green `date` `cat /usr/local/hobbit/client/history_test` '");
if(eof(Infile)){
system ("$GreenAlertCommand");
}else{
while(<Infile>){
system ("$RedAlertCommand");
}
}
close Infile;