|
PLI Garnet usage Crontab for autoupdate
Hello,
I want to use crontab to update information each day.
To do than I have first done a test
==>1. activate the menu : PLI image setup / Services to run / Start crond.
==>2. create a script shell named test.sh in /var/bin with :
#!/bin/sh
echo "ok" > /var/tmp/test ;
==>3. I have create a file named crontab in /var/spool/cron with :
SHELL=/bin/sh
* * * * * /var/bin/test.sh >/dev/null
But nothing appends, do you have any idea ?
|