Hey guys, im trying to run a script using cron, im using a crontab created by the user ashtanga, in the crontab i have
*/5 * * * * /home/custom-django-projects/SiteMonitor/sender.py
in top of the script i have:
#!/usr/local/bin/python
and the user ashtanga does have executable permission to the file, but cron is not running the script, its giving me the error:
/bin/sh: /home/custom-django-projects/SiteMonitor/sender.py: No such file or directory
so my question is, how can i get cron to run the script ?
ls -l
? – Justin Ethier Jan 14 '11 at 14:40readlink -f sender.py
output. – xenoterracide♦ Jan 14 '11 at 16:36