summaryrefslogtreecommitdiff
path: root/test/fpat6.awk
blob: de7824a4ed569399c8bd57e8e2af358b15c9afab (plain)
1
2
3
4
5
6
7
8
BEGIN {
		FPAT = "([^,]*)|(\"[^\"]+\")"
}
{
	print "NF =", NF
	for (i = 1; i <= NF; i++)
		printf("$%d = <%s>\n", i, $i)
}