#!/bin/bash #################################### # # Processing a comma separated file # Author: Bill Kraynek # ##################################### file=$1 sort -t, -g -r -k7 $file | head -1 | awk -F, '{printf "%s had the most with %d correct\n",$1,$7}'