I am trying to run the script below in a crontab to keep my ip upto date.
echo "" echo "done updating home.houseofhawkins.com..." if I do
This script will run successfully, but if I put this into a crontab it will always fail:
the log file will have:
Not sure what is wrong asked 03 Mar '13, 12:14 twiggy |
First thing first, put a bash -x in front of the cron entry for the command, see exactly where it's failing. Also remove the dot in front. so:
Post said output. answered 03 Mar '13, 20:19 rfelsburg ♦ |