Posts Tagged ‘zenity’

18
Feb

Apache için basit bir log viewer

   Posted by: myownshadow    in Yazılım

#!/bin/
if [ ! -f /tmp/logcopy ]
then
echo "first run, copying log file"
cp /var/log/2/access.log /tmp/logcopy
fi
oldfilehash=`md5sum /tmp/logcopy | cut -d " " -f1`
newfilehash=`md5sum /var/log//access.log | cut -d " " -f1`
if [ "$oldfilehash" != "$newfilehash" ]; then
diff /var/log/apache2/access.log /tmp/logcopy > /tmp/logdiff
if [ ! $? -eq 0 ]; then
cat /tmp/logdiff | --title "Apache " --text-info --width 1024 --height 800
fi
cp -u /var/log/apache2/access.log /tmp/logcopy
fi
exit

/usr/local/bin altına kaydedip kullanabilirsiniz.

Bookmark and Share
Tags: , , , , , ,

Tags: , , , , , ,

Switch to our mobile site