mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-27 23:22:09 +00:00
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
|