mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04: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
|