in reply to extract problem
I reckon I'd avoid the pipe to awk and grep; perl can do it instead:
my @sysutiloutput = `sysutil`; my @total = grep (/Total/, @sysutiloutput); print ("@total\n"); [download]