I'm running Ubuntu16.
I'm trying to run very simple bash scripts and cron jobs!
I'm trying to get cron to run the following bash script on a daily basis:
#!/bin/bash
echo "Hello James how is your day going"
I can run the script from the command line no problem, but cron won't? My Cron job is set up as such:
0 15 * * * /tmp/myjob.sh
What am I missing?