Sheeja Bhaskaran wrote:
.Also guide me how to set the time intervals in batch processing.
either add "sleep 30" (stall for 30 seconds) into the script and put a
"while" loop into it, or run the script as a "cron" job at some regular
interval. if updating every 10 seconds probably 'sleep' is the better way,
if just once an hour probably 'cron' is the better way.
Hamish