[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[cobalt-users] Re: OT; Transloaders
- Subject: [cobalt-users] Re: OT; Transloaders
- From: "Mark S Burgunder" <mark@xxxxxxxxxxxxxxxxxxxx>
- Date: Sun Aug 26 20:32:03 2001
- Organization: Avanti Hosting
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
On Friday, August 24, 2001 10:33 AM, Carrie wrote:
> I did, but didn't think wget would get any cgi scripts (it would get
> the output of them instead, I *think*) - obviously I'm not sure on
> that. Also didn't know if wget would go into password-protected
> directories.
> So I turned to ftp instead as it would grab everything.
Well, I was thinking of using wget to do the ftp.
The hard bit is just to figure out how to pass a userid and password with
the ftp link...
But even that is not really a big problem because if you give wget the
following ftp link: ftp://user:pwd@xxxxxxxxxx/ it will actually log in to
the ftp server with the username "user" and the password "pwd".
Even more fun is to use wget with the -m option which turns on options
suitable for mirroring. The following command line will make a full mirror
copy of what is currently on that virtual domain domain.com: (The ../../
part after the domain in the link is to get from the users/user directory to
the virtual root directory of the account.)
wget -m ftp://user:pwd@xxxxxxxxxx/../../
I hope that comes close to what you are actually after.
Cheers
Mark