From 91771fc8385ba9362a1ecdcaf92f321321976a30 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Wed, 1 Jul 2015 17:07:59 -0400 Subject: [PATCH] Add "crawler" and "voltron" to bot UA search --- bots/findBots.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bots/findBots.sh b/bots/findBots.sh index 81db94a..3e95392 100755 --- a/bots/findBots.sh +++ b/bots/findBots.sh @@ -4,7 +4,7 @@ # Generates a Go map containing all bots that have accessed Write.as # -cat /var/log/$1 | grep -i bot | awk -F\" '{print $4}' | sort | uniq > bots.txt +cat /var/log/$1 | grep -i 'bot\|crawler\|voltron' | awk -F\" '{print $4}' | sort | uniq > bots.txt rm bots.go