Hi,
I have a MS Access database in a Ibays called bdadmin. I created a sript as follow (Script is in /)
#!/bin/bash
rm /home/e-smith/files/ibays/bdadmin/files/bd.b1h -f
cp /home/e-smith/files/ibays/bdadmin/files/bd.mdb /home/e-smith/files/ibays/bdadmin/files/bd.b1h.
I set the permission to 755 for the script file. When I run it manually, everything is ok.
I want to run that script in a Crontab job every 30 minutes. I'ved do that:
logged as root,
crontab -e
I edited the cronlist like that:
30 * * * * ./backup.sh
saved.
When I do I crontab -l, the job is listed. But nothing run... What I'ved done bad ?