mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
14 lines
147 B
Text
14 lines
147 B
Text
|
|
{ x[NR] = $0 }
|
||
|
|
|
||
|
|
END {
|
||
|
|
i = 1
|
||
|
|
while (i <= NR) {
|
||
|
|
print x[i]
|
||
|
|
split (x[i], y)
|
||
|
|
usage = y[1]
|
||
|
|
name = y[2]
|
||
|
|
print " ", name, usage
|
||
|
|
i++
|
||
|
|
}
|
||
|
|
}
|