User Tools

Site Tools


pages:scripts:multitail-all-access-logs

multitail-all-access-logs

#!/bin/bash
MULTITAILPARAMETER="";
TODAY=$(/bin/date +%Y%m%d); #20080818
for i in /var/log/ispconfig/httpd/*/access.log; 
do
	ls -la $i | grep $TODAY && MULTITAILPARAMETER="${MULTITAILPARAMETER} -I ${i}";
done;
multitail $MULTITAILPARAMETER;

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
pages/scripts/multitail-all-access-logs.txt · Last modified: 2022/12/31 00:42 by Heiko Mischer