I'm trying to run an hourly python script. My crontab looks like this:
crontab -l
0 * * * * "/common/.../www/concat.py /common/.../www"
as an output I get this:
/bin/sh: /common/.../www/concat.py /common/.../www: No such file or directory
It makes no difference if I leave away the "" in the crontab. The argument is needed to set the current working directory in python. What am I doing wrong?
Found the bug:
0 * * * * needs to have a space as a whitespace. I used tabs.
/.../? – RedGrittyBrick Sep 26 '12 at 16:22