I am downloading a file from an FTP server using wget. If I type in
ftp://username:password@datatransfer.cj.com/some_path/file
into my browser, the file is downloaded fine.
If I instead do,
wget ftp://username:password@datatransfer.cj.com/some_path/file -O /path/file.txt
It says login incorrect.
What are some possible reasons this may occur and how can I fix it.
Thanks!