6 lines
109 B
Bash
6 lines
109 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
test ${#} -lt 1 && exit 1
|
||
|
|
||
|
awk '/ {$/ { sub(/\(.*/, "", $5); print $5 }' "${@}" | sort | uniq -c
|