1*23f24377SWarner Losh	{ x[NR] = $0 }
2*23f24377SWarner Losh
3*23f24377SWarner LoshEND {
4*23f24377SWarner Losh	i = 1
5*23f24377SWarner Losh	while (i <= NR) {
6*23f24377SWarner Losh		print x[i]
7*23f24377SWarner Losh		split (x[i], y)
8*23f24377SWarner Losh		usage = y[1]
9*23f24377SWarner Losh		name = y[2]
10*23f24377SWarner Losh		print "   ", name, usage
11*23f24377SWarner Losh		i++
12*23f24377SWarner Losh	}
13*23f24377SWarner Losh}
14