aboutsummaryrefslogtreecommitdiffstats
path: root/cron
diff options
context:
space:
mode:
Diffstat (limited to 'cron')
-rwxr-xr-xcron/counter.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/cron/counter.sh b/cron/counter.sh
new file mode 100755
index 0000000..b75dd12
--- /dev/null
+++ b/cron/counter.sh
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+
+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'
+
+[ -e $logfile ] || exit 1
+[ -e $destfile ] || exit 1
+sed -i '' "s/$foretext.*$/$foretext<b>$(grep -E -v -i "$botlist" $logfile | awk '{print $1}' | sort | uniq | wc -l | tr -d ' ')<\/b>/" $destfile