aboutsummaryrefslogtreecommitdiffstats
path: root/test/fpat1.awk
blob: b091625a884681b003d2af2ee797221240f97291 (plain)
1
2
3
4
5
6
7
8
9
10
11
BEGIN {
#	if (t == 0)
#		FPAT = "([^,]+)|(\"[^\"]+\")"
#	else
		FPAT = "([^,]*)|(\"[^\"]+\")"
}
{
	print "NF =", NF
	for (i = 1; i <= NF; i++)
		printf("$%d = <%s>\n", i, $i)
}