On Tue, May 26, 2009 at 12:36:17AM +0200, Emmanuel GUILLEMONT wrote: > I can't find out how to connect a distant server when password contains > "strange letters", by example let's have a ftp account such as > login : myself > password: oY9;8z)kHY > Command like lftp ftp://myself,oY9;8z)[email protected] ...... > fails ...
You can either: 1) not specify the password, and lftp will ask for it; 2) specify the password in the URL with %XX syntax, where XX is the hex code of the strange letter; 3) specify the password in -u option: lftp -u "user,password" myftpserver.com. -- Alexander..
