Page 1 of 1

rewalk at specific date/time

Posted: Mon Nov 06, 2000 1:49 pm
by Thunderstone


I have a new db created using the following:

gw -d/home/www/search/wdn/db -m/home/www/search/control/wdn_
options '&/home/www/search/control/wdn_urllist'

Within the wdn_options is the following:

D5
unique
fasp,shtml,php,phtml,po,cfm,pl,txt
dnscache
N
L
t30
w2
X
meta=keywords,description

I want to now do a rewalk starting next Saturday for 24 hours.

Is it simply gw -dmy_db -rewalk"my_date_time" & ??

If so, then does it run as a deamon and sleep until the next "my_date_time"?

TIA,

Jim



rewalk at specific date/time

Posted: Mon Nov 06, 2000 2:08 pm
by Thunderstone


gw does not deamonize itself, but it does sleep and wait for the interval.
You need to nohup it in background to make it immune to hangups etc.

I'm not quite sure what "next Saturday for 24 hours" is supposed to mean,
but "next Saturday" would be
nohup gw -dmy_db -rewalk="saturday" &

If you want daily repititions you could use
nohup gw -dmy_db -rewalk="every 24 hours" &

Or use your system's scheduler with just -rewalk (no timespec). On unix
systems it's called cron ("crontab" command). On NT it's called task
scheduler ("at" command).

..