command find, wildcard and bash script howto
I am trying to run the command
find /var/log/httpd -iname access_log-201204* > /tmp/accesslist
from the bashscript but I cannot get it to work. How do I provide the * wildcard in bash script for the following script. I am trying to make a list of all the previous months access_log files
#!/bin/bash
YESTERDAY=`date -d " -1 day" +%Y%m%`
NOW=`date +%d`
if [ $NOW== "1" ]; then
find /var/log/httpd -iname access_log-$YESTERDAY > /tmp/filename
else
exit 0
fi
thank you for your help.
|