How to solve this problem ??
ls: /var/spool/exim/input/*-H: No such file or directory
Completion :
Just a small note… in the file /etc/mrtg/check-email
#pico /etc/mrtg/check-email
the following line:
QUE=`ls /var/spool/exim/input/*-H | wc -l | sed -e "s/ //g"`
needs to be changed to:
QUE=`ls /var/spool/exim/input/* -H | wc -l | sed -e "s/ //g"`
a