Page 1 of 1

Multiple sites in a batch

Posted: Tue May 04, 1999 1:11 pm
by Thunderstone


I have about 10 sites that I need to walk. Some of them are of the form

www.domain.com

and the others are

www.domain2.com/directory

I want to set up a batch file to fire through the sites so that I can
just feed this list to webinator and let it run. What is the proper way
to make this file and how would it be invoked? Would it be just plain
text like

http://www.domain.com
http://www.domain2.com
jhttp://www.domain3.com/directory3 http://www.domain3.com/directory3
jhttp://www.domain4.com/directory4 http://www.domain4.com/directory4

and then fed to the command with some argument? Thanks.




Multiple sites in a batch

Posted: Tue May 04, 1999 1:36 pm
by Thunderstone


You need to create two files. An options file and a url list file.
The options file contains only options:

jhttp://www.domain3.com/directory3
jhttp://www.domain4.com/directory4

The url file contains only urls:

http://www.domain.com
http://www.domain2.com
http://www.domain3.com/directory3
http://www.domain4.com/directory4

Then you use -m to specify the options file and & to specify the url file.
For example:

gw -mmyoptions "&mylist"

where myoptions contains your options and mylist contains your urls.
Make sure there are no extraneous spaces in either file.
See the manual for further information about the above options.