- 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 ";
}
}
- 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 ";
}
}
- 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 ";
}
}
- or download this
if (/Daily(\S+)\s/) {
print "Daily true $1\n";
}