I need to download all files from an FTP address using wget. I am currently using this code:
wget -m ftp://user:password@ip.of.old.host
However, my FTP username is something like user @domain, so I would get
wget -m ftp://user@domain:password@ip.of.old.host
Command error due to @ field in username field. How can I avoid @? I could not find an answer on Google.
source
share