Technotes for future me
Match lines
awk '$1 ~ /pattern/ { ... }' infile
Matching for Conditions
awk '{if($1 ~ /pattern) { ... }}' infile
awk '{print $(NF - 1)}'