Hi Jose,

> When I try to download a file using wget
> 
>       wget ftp://ftp.site.com/file-???-x86.exe
> 
> I get the following error message
> 
> 502 Bad Gateway
> 
> Now, if I specify a specific file
> 
>       wget ftp://ftp.site.com/file-001-x86.exe
> 
> it all works great.

Maybe it's because the wildcards are expanded by your shell? By default, you 
can't use wildcards with wget. Try 

wget --no-glob ftp://ftp.site.com/file-???-x86.exe

Or try to quote the URL.

Hope this helps,

Peter

-- 
Peter Albrecht, Novell, [EMAIL PROTECTED]

Reply via email to