Blob Blame History Raw
BEGIN {
		FPAT = "([^,]*)|(\"[^\"]+\")"
}
{
	print "NF =", NF
	for (i = 1; i <= NF; i++)
		printf("$%d = <%s>\n", i, $i)
}