I have a very simple shell script I need to run as a cronjob but I can\'t get even the test scripts to run. Here\'s and example script:
/home/myUser/scripts/test.sh<
Try,
# cat test.sh #!/bin/bash /bin/touch file.txt
cron as:
* * * * * /bin/sh /home/myUser/scripts/test.sh
And you can confirm this by:
# tailf /var/log/cron