ubuntu-buildroot/output/build/host-gawk-5.2.0/awklib/eg/misc/arrayorder.awk

11 lines
117 B
Awk
Raw Normal View History

2024-04-01 15:19:46 +00:00
{
if ($1 > max)
max = $1
arr[$1] = $0
}
END {
for (x = 1; x <= max; x++)
print arr[x]
}