I'm trying to get cron to run this command every 10 minutes;
(In /home/pi/myst-myst/ DIR)
python myst.py `./monitor.sh`
I've tried pretty much everything to get it to work but cron won't execute it properly. Here is what I have at the moment;
*/1 * * * * /usr/bin/python /home/pi/myst-myst/myst.py `./monitor.sh`
Any help would be much appreciated.
Is there an alternative to crontab I could use? Could I use a bash script to execute python and then use a cron for that bash script?