#!/usr/bin/awk -f BEGIN { FS=":"; } { if ( $3 >= 100 ) user_count++; } END { print user_count; }