Extract unique items in a tabular list
awk '{print $1}' <path/to/file>|sort|uniq -c|sort -n -k 1 # example on column 1