I'm trying to set up a Cron Job on someone else's code to run on an ASUS Tinkerboard
It's currently a simple script that just connects to a device within range (that works)
I've used crontab -e
to open up my file, and all I've put in is:
0 * * * * * ~Projects/Tinker/example.py
I want it to run every hour on the hour, but it isn't doing so. I think I'm not setting up my directories correctly. On the command window, the only thing I see for directories is:
name@linaro-alip ~/Projects/Tinker/example.py
How can I fix this so that my program will run every hour?