mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
11 lines
103 B
Awk
11 lines
103 B
Awk
|
|
{
|
||
|
|
if ($1 > max)
|
||
|
|
max = $1
|
||
|
|
arr[$1] = $0
|
||
|
|
}
|
||
|
|
|
||
|
|
END {
|
||
|
|
for (x = 1; x <= max; x++)
|
||
|
|
print arr[x]
|
||
|
|
}
|