Do not use awk at all so not sure how to write this??
I need two variables that will output the 8 -9 byte total and 10 byte total i.e.
8-9=awk '{ arr[length($1)]++ }
END {print "8 - 9 bytes", arr[8]+arr[9] } ' path for file?
10=awk '{ arr[length($2)]++; }
END {print " 10 bytes ", arr[10] } ' path for file?
Is this how you would use the solution by Jim???