xref: /illumos-gate/usr/src/test/util-tests/tests/awk/examples/awk/p.52 (revision 4e5ef1cee66fbfbbd2b3e56b81e2bb5700f4a59e)
1BEGIN	{ FS = ":" }
2{
3	if ($1 != prev) {
4		if (prev) {
5			printf "\t%-10s\t %6d\n", "total", subtotal
6			subtotal = 0
7		}
8		print "\n" $1 ":"
9		prev = $1
10	}
11	printf "\t%-10s %6d\n", $2, $3
12	wtotal += $3
13	subtotal += $3
14}
15END	{ printf "\t%-10s\t %6d\n", "total", subtotal
16	  printf "\n%-10s\t\t %6d\n", "World Total", wtotal }
17