FTP file download using Wget

wget

I am using the wget command for download FTP files, when i download the FTP file its showing error "Event not fount". Here i use the password like some below charater ! so its showing this error

bash: !@myipaddress: event not found

Using wget command

wget -r ftp://username:password@ip/directoryname

Best Answer

You can the same command by enclosing it with quotes:

wget -r 'ftp://username:password@ip/directoryname'
Related Topic