Final answer:
To find the person not from Florida with the highest point total, you can use awk or a pipeline of grep and sed commands.
Step-by-step explanation:
To find the person not from Florida with the highest point total using awk, you can use the following command:
awk '{if ($4 != "FL" && $6 > max) {max = $6; line = $0}} END {print line}' USA.txt
This command checks if the state ($4) is not equal to "FL" and if the points ($6) are greater than the current maximum. If so, it updates the maximum and stores the entire line. Finally, it prints the line with the highest point total.
To achieve the same result using other commands like grep and sed, you can use the following pipeline:
grep -v "FL" USA.txt | sort -k6nr | head -1
This command first filters out the lines from Florida using grep, then sorts the remaining lines based on the points field in reverse numeric order using sort, and finally selects the line with the highest point total using head.