aboutsummaryrefslogtreecommitdiffstats
path: root/test/fpat5.awk
blob: b508f068e7f7f958a8b59a6eefc78f5aae4aeac9 (plain)
1
2
3
4
5
6
7
8
BEGIN {
	FPAT = "([^,]*)|(\"[^\"]+\")"
	OFS = ";"
}

p != 0 { print NF }

{ $1 = $1 ; print }