#!/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;