Help for this page

Select Code to Download


  1. or download this
    spinUp();
    collectJobs();
    ...
    
    sub spinUp()
    {
    
  2. or download this
            foreach $item (@tempJobsTable)
            {
                    $item=~s/\s+/ /g;
                    @thisJob=split(" ",$item);
    
  3. or download this
            foreach (@tempJobsTable)
            {
                    @thisJob=split;
    
  4. or download this
                            if ($failureType{$thisJob[6]}=="")
                            {
                                    $failureType{$thisJob[6]}=$thisJob[3];
                            }
    
  5. or download this
                            $lastValidBackupTime=`/usr/openv/netbackup/bin
    +/admincmd/bpcatlist -client $client 2>&1 | grep $client | head -n1 | 
    +awk '{print $2}'`;
    
  6. or download this
                            $lastValidBackupTime=~s/\s+/ /g;
    
  7. or download this
                            @temp=split(" ",$lastValidBackupTime);
    
  8. or download this
                            $lastValidBackupTime="$temp[1] $temp[2] $temp[
    +3] $temp[4]";