Prevent findBots.sh running when no arg given

This commit is contained in:
Matt Baer
2018-01-25 17:30:41 -05:00
parent ca03ff920a
commit c0e4c95cfb
+5
View File
@@ -7,6 +7,11 @@
# usage: findBots.sh application.log
#
if [ -z $1 ]; then
echo usage: findBots.sh [logfilename]
exit 1
fi
cat /var/log/$1 | grep -i 'bot\|spider\|crawl\|scraper\|indexer\|voltron' | awk -F\" '{print $4}' | sort | uniq > bots.txt
rm bots.go