5 lines
101 B
Bash
Executable File
5 lines
101 B
Bash
Executable File
#! /bin/bash
|
|
|
|
awk -F, '$17=="udp" && $22==53 { print $20 }' logs.txt \
|
|
| sort | uniq -c | sort -rn
|