So I wrote a perl script to remove a bunch of unnecessary files that are generated every once in a while. I would like it to run daily, so I thought I would set up a cron job. However, this doesn't seem to be going over very well. I've altered the /etc/crontab file to include the line:
Code:
15 1 * * * root perl /home/keelerm/bin/rmBackUp.pl
After saving that, I did
Code:
>crontab crontab
>crontab -l
Sure enough, the changes were saved. However, it's not running the script and I don't know why. Any ideas? Thanks