CSV means comma separated values. It's like a normal "txt" file with commas at regular places to separate some values. Typically the first line of CSV file is a "header", containing names of columns ...
AWK is a fascinating text-processing language, and somehow after reading the delightfully-terse The AWK Programming Language I was inspired to write an interpreter for it in Go. So here it is, feature ...