| > I know I can manually add the username and passwords
> to each web address I put in to the list. I know
this
> doesn't sound right but I have to send one username
> and password to every link on the site I am
> downloading. even if it changes to a sub-domain.
For
> ex. <http://login:pass@www.me.com/> is entered. Then,
a
> link on that site points to asas.me.com, I want that
> login and password to automatically be used. I
can't
> enter each subdomain in.
Well, this is not possible, you have to enter at least
once the username/pass for each different hosts
(because foo.bar.com and www.bar.com are considered as
different location)
If your list is very long, and you can get a regex/sed
tool, try somethink like this before pasting:
cat list | sed -e 's/^\(.*\)$/smith:foo@\1/' > newlist
| |