in reply to extract problem

awk would think "Total" is field $1, no?

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");
--
jpg