Anybody any suggestions on why my crontab and shell script is not running.
I have
chmod +x
my shell script and added the following into crontab -e
*/5 * * * * bash cd /home/jclark/scrips/ipcheck/ && ./ipCheck.sh
ipCheck.sh then costits of the following:
#!/bin/sh
curl http://api.externalip.net/ip/ -o ipRecord.txt
Although it doesn't appear to be running?