Escape @ in wget for FTP login Escape @ in wget for FTP login shell shell

Escape @ in wget for FTP login


Solution was to use

wget -m --user "user@domain" --password "password" ftp://ip.of.old.host

As fedorqui suggested but adding ftp:// before ip.of.old.host.

Thanks!


The solution is to URL Encode the @:

wget -m ftp://user%40domain:password@ip.of.old.host