I have a Perl script which will run in a cron job on linux suse. It will take as input a log file that was generated yesterday. The filename of the log contains the date (i.e. log.20100209)
Can I send yesterday's date with the format in the prompt? Should I create an additional script to get the date and execute? If so, how can I do that?
Thanks
perl myscript.pl -f log.20100209
Edit
Thanks for your help
It worked with:
perl myscript.pl -f log.`date --date='yesterday' '+%Y%m%d'`