File: arraysort2.awk

package info (click to toggle)
gawk 1%3A5.3.2-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 24,120 kB
  • sloc: ansic: 56,743; awk: 14,966; sh: 6,985; yacc: 6,820; makefile: 3,144; sed: 119; python: 31; csh: 6
file content (34 lines) | stat: -rw-r--r-- 583 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# This should no longer core dump ... 7/31/2018
function init(b, 	a, i)
{
	a[1] = "aardvark"
	a[2] = "animal"
	a[3] = "zebra"
	a[4] = "zoo"
	a[5] = "Iguana"
	a[6] = "Alligator"
	a[7] =a[8] = "people"
	for (i in a)
		b[IGNORECASE][i] = a[i]
}

BEGIN {

	for (IGNORECASE = 0; IGNORECASE < 2; IGNORECASE++) {
		init(b)

		n = asort(b[IGNORECASE])

		for (i = 1; i <= n; i++)
			printf("b[%d][%d] = \"%s\"\n", IGNORECASE, i, b[IGi])

		print "===="
	}

	IGNORECASE = 1
	init(b)
	b[2][1] = ""
	n = asort(b[1], b[2])
	for (i = 1; i <= n; i++)
		printf("b[2][%d] = \"%s\"\n", i, b[2][i])
}