I have a program written in C with OpenCV. It captures an image from the webcam and saves on the disk with the name given as an argument. I want to trigger it every minute, thus I inserted the following line to crontab.
* * * * * /home/mustafa/Desktop/capture2/capture2 `date +\%y\%m\%d\%H\%M` >> /home/mustafa/Desktop/webcam.log
This command runs as expected when I run it from the console. But it is not triggered by crontab.
Are there any errors in my crontab syntax?
Edit: it's Angström Linux

man 5 crontab) If not, what is the line you inserted into your crontab? – sr_ Dec 5 '11 at 10:32