mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-25 06:53:03 +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
|