Help for this page

Select Code to Download


  1. or download this
    while (<BPCONF>)
    {
         my ($server) = unpack ("@10 A10", $_);
    ...
              exit (100);
         }
    }
    
  2. or download this
    my $server = substr($_, 10, 10);
    my ($server) = /^.{10}(.{10})/;
    
  3. or download this
    while (<BPCONF>)
    {
         if (/SERVER = cluster/ && $ps eq "daemon")
    ...
               exit (100);
         }
    }