In Linux cronjobs, every command has to be called with its full path as cron does not read the $PATH variable that is sued on the shell. So instead of sh, you have to use
/bin/sh /var/www/mydomain.nl/web/sat/getimage.sh
or if the file contains already #!/bin/sh in the first line, then use just:
/var/www/mydomain.nl/web/sat/getimage.sh
|