summaryrefslogtreecommitdiff
path: root/test/csv1.awk
blob: 12bbf1e5e7814c5547c7b220d80623e074844233 (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 ""
}