problem87.awk
Generated on Tue Dec 05 17:39:07 Eastern Standard Time 2006 from problem87.awk
BEGIN { OFS = ","
print("Object,Problem87,In Use By")
}
/Checking user/ { count = 0
object = $4
num++
}
/Problem 87/ { count++
totalcount++
}
/in use by/ { print(object, count,$1)
totalinuseby += $1
}
END { print("=====")
print("Total", totalcount, totalinuseby)
print("Entries", num)
}
1 files processed.