summaryrefslogtreecommitdiff
path: root/test/csv1.awk
blob: 4896ef7c63729ac90829316e1878aacf02e57f28 (plain)
1
2
3
4
5
6
7
8
9
10
# BEGIN {
# 	FS = ","
# }

{
	printf(" \t%s\t", $0)
	for (i = 1; i <= NF; i++)
		printf("[%s]", $i)
	print ""
}