Explorar el Código

Prevent findBots.sh running when no arg given

master
Matt Baer hace 6 años
padre
commit
c0e4c95cfb
Se han modificado 1 ficheros con 5 adiciones y 0 borrados
  1. +5
    -0
      bots/findBots.sh

+ 5
- 0
bots/findBots.sh Ver fichero

@@ -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


Cargando…
Cancelar
Guardar