Hi,

[EMAIL PROTECTED] wrote:
> I'm trying to mirror about 100 servers (small fanfic sites) using
> wget --recursive --level=inf -Dblah.com, blah.com,blah.com some_address
> However, when I run the batch file, it stops reading after a while;
> apparently my command has too many characters.  Is there some other
> way I should be doing this, or a workaround?
You can put all the options for wget in a wgetrc file.
Set an environment variable called "WGETRC" which points to the full
pathname of your wgetrc file.
To see the options for wgetrc see
http://www.gnu.org/software/wget/manual/wget.html#Wgetrc-Commands

for your example the wgetrc file would read:
recursive=1
reclevel=inf
domain=blah.com,blah.com,blah.com

then start wget with:
wget some_address

TT

Reply via email to