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