Procházet zdrojové kódy

Prevent findBots.sh running when no arg given

master
Matt Baer před 6 roky
rodič
revize
c0e4c95cfb
1 změnil soubory, kde provedl 5 přidání a 0 odebrání
  1. +5
    -0
      bots/findBots.sh

+ 5
- 0
bots/findBots.sh Zobrazit soubor

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


Načítá se…
Zrušit
Uložit