cron questions
I need to create a cron job to do the following:cp -R /home/username/tmp/webalizer/ /home/username/public_html/webstats/
chown username:username /home/username/public_html/webstats
chmod 655 /home/username/public_html/webstats
What would be the best way of doing this? Do I really need to create a new cron job for each command? Will I need to somehow create a perl script to do the above?

