geom_gate userland utility improvements
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
185 B

  1. #!/usr/bin/awk -f
  2. $0 ~ /^debug: ggio/ {
  3. reqs[$8] = 1
  4. print "started: " $8
  5. }
  6. $0 ~ /^debug: cmd complete/ {
  7. delete reqs[$5]
  8. }
  9. END {
  10. for (i in reqs) {
  11. print "unfinished: " i
  12. }
  13. }