mirror of
https://github.com/haproxy/haproxy.git
synced 2026-02-03 20:39:41 -05:00
9 lines
229 B
Text
9 lines
229 B
Text
|
|
#!/bin/bash
|
||
|
|
if [ $# -lt 2 ]; then
|
||
|
|
echo "Usage: $0 regex debug_file > extracted_file"
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
word=$1
|
||
|
|
file=$2
|
||
|
|
exec grep $(for i in $(grep $word $file |cut -f1 -d: | sort -u ) ; do echo -n '\('$i':\)\|'; done; echo '^$') $file
|