aboutsummaryrefslogtreecommitdiffstats
path: root/test/fpat3.awk
blob: 801bb58ed7c988a57234471b1f61b2eb6e138578 (plain)
1
2
3
4
5
6
7
8
9
10
BEGIN {
	FPAT = "[^,]*"

}

{
	if (x) NF
	for (i = 1; i <= 4; ++i)
		print i, $i
}