Help for this page

Select Code to Download


  1. or download this
    my $call = `mminfo -r 'volume,state,written,%used,space,pool,location,
    +ssinsert' -q 'ssinsert <= three week ago`;
    foreach ($call) {
    ...
        print "not found\n ";
      }
    }
    
  2. or download this
    my @calls = split /\r?\n/, `mminfo -r 'volume,state,written,%used,spac
    +e,pool,location,ssinsert' -q 'ssinsert <= three week ago`;
    
    ...
        print "not found\n ";
      }
    }
    
  3. or download this
    my $cmd = 'mminfo -r 'volume,state,written,%used,space,pool,location,s
    +sinsert' -q 'ssinsert <= three week ago';
    
    ...
        print "not found\n ";
      }
    }
    
  4. or download this
      if (/Daily(\S+)\s/) {
        print "Daily true $1\n";
      }