I have this shell script at /usr/local/1.sh:
#!/bin/sh
wget -r -np --user=peter --password='123' ftp://67.225.87.95/ -p /test/
If I run it using
# sh 1.sh
the script executes ok and does what its supposed to do.
But if I create a cron job to execute the exact same script:
1 2 * * * /usr/local/bin/1.sh
the script is not executed at all.
What could be wrong?