mirror of
https://github.com/opnsense/src.git
synced 2026-04-27 17:17:19 -04:00
11 lines
123 B
Text
11 lines
123 B
Text
|
|
{for(i=1; i<=NF; i++) {
|
||
|
|
if (x[$i] == "")
|
||
|
|
y[++n] = $i
|
||
|
|
x[$i]++
|
||
|
|
}
|
||
|
|
}
|
||
|
|
END {
|
||
|
|
for (i=0; i<n; i++)
|
||
|
|
print (y[i], x[y[i]])
|
||
|
|
}
|