You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
147 B

{ 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++
}
}