Percentage in password

2007-12-15 Thread Marcus

Hi
Is there some way I can WGET to work with a percentage sign in the password?

I.e. WGET ftp://login:[EMAIL PROTECTED]/file.txt
 
Best regards
Marcus


Re: Percentage in password

2007-12-15 Thread Hrvoje Niksic
Marcus [EMAIL PROTECTED] writes:

 Is there some way I can WGET to work with a percentage sign in the password?

 I.e. WGET ftp://login:[EMAIL PROTECTED]/file.txt

Yes, escape the percentage as %25:

wget ftp://login:[EMAIL PROTECTED]/file.txt

(This is not specific to Wget; '%' is the hex escape character in
URLs.)