1BEGIN {
2		FPAT = "([^,]*)|(\"[^\"]+\")"
3}
4{
5	print "NF =", NF
6	for (i = 1; i <= NF; i++)
7		printf("$%d = <%s>\n", i, $i)
8}
9