Posts Tagged ‘zenity’
#!/bin/bash
if [ ! -f /tmp/logcopy ]
then
echo "first run, copying log file"
cp /var/log/apache2/access.log /tmp/logcopy
fi
oldfilehash=`md5sum /tmp/logcopy | cut -d " " -f1`
newfilehash=`md5sum /var/log/apache2/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 | zenity --title "Apache Log Viewer" --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.
Tags: Apache, apache2, bash, changelog, log viewer, script, zenity