From ef70996a6bdeb400a39506a98e713bbcdfcc83d2 Mon Sep 17 00:00:00 2001 From: Joe Date: Sun, 22 May 2022 20:38:22 +0200 Subject: Removed bots check for its too heavy --- cron/counter.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'cron') diff --git a/cron/counter.sh b/cron/counter.sh index b75dd12..b93b8ab 100755 --- a/cron/counter.sh +++ b/cron/counter.sh @@ -3,8 +3,9 @@ logfile='/var/log/nginx/access.log' destfile='/usr/local/www/jozan/index.html' foretext='Unique visitors: ' -botlist='petalbot|googlebot|adsbot-google|ahrefs\.com|pingbot|robots\.txt|pandalytics|serpstatbot|zoombot|semrush.com\/bot|archive\.org_bot|bingbot|vuhuvbot|neevabot|botaflatoon|botfnetowrksx|zaldamosearchbot|facebookexternalhit|mj12bot|polaris botnet|turnitinbot' +#botlist='petalbot|googlebot|adsbot-google|ahrefs\.com|pingbot|robots\.txt|pandalytics|serpstatbot|zoombot|semrush.com\/bot|archive\.org_bot|bingbot|vuhuvbot|neevabot|botaflatoon|botfnetowrksx|zaldamosearchbot|facebookexternalhit|mj12bot|polaris botnet|turnitinbot' [ -e $logfile ] || exit 1 [ -e $destfile ] || exit 1 -sed -i '' "s/$foretext.*$/$foretext$(grep -E -v -i "$botlist" $logfile | awk '{print $1}' | sort | uniq | wc -l | tr -d ' ')<\/b>/" $destfile +# sed -i '' "s/$foretext.*$/$foretext$(grep -E -v -i "$botlist" $logfile | awk '{print $1}' | sort | uniq | wc -l | tr -d ' ')<\/b>/" $destfile +sed -i '' "s/$foretext.*$/$foretext$(awk '{print $1}' $logfile | sort | uniq | wc -l | tr -d ' ')<\/b>/" $destfile -- cgit v1.2.3