Re: Scritping Fetch (3.0.3)
Re: Scritping Fetch (3.0.3)
- Subject: Re: Scritping Fetch (3.0.3)
- From: Bill Briggs <email@hidden>
- Date: Wed, 29 Nov 2000 14:53:47 -0300
At 10:30 AM -0500 29/11/00, Bradley Ford wrote:
> Fetch 3.0.3 got an error: Can't get URL
"userid:password@ipaddress/directory/subdirectory/"
Have you tried:
"Userid@ipaddress:/directory/subdirectory/"
This is how you would do it from a unix prompt, not sure if the colon makes
a difference in your case or not.
UNIX ftp utilities must be smarter and automatically prepend the
ftp:// to the destination you put on the command line. Fetch needs to
have the URL specified in full. A clear declaration of what it needs
is found in the sample scripts that come with it. Here's an extract.
set dialog_reply to display dialog "Enter Destination URL in format:"
& return & ,
"
ftp://[user[:password]@]host/path" & return & ,
"Where [...] is optional." default answer gDestURL
- web