gw -d[dbname] -s "delete from todo"
Will clear the todo table.
You may be selective as well. For example, lets say you wanted to
delete certain Urls from the index;
gw -d[dbname] -s "delete from html where Url like '/text/version' "
This command will delete the records in the html table that have
"text/version" as part of their Url.
Eg:
www.mysite.com/willy/wonka/text/version/candy.html
www.mysite.com/text/version/home.html
Make sure that you update the index after performing any operation
that affects the html table with the command: gw -d[dbname] -index
Yours,
Bart Richards