The wget command is used for downloading files from remote servers. It’s also used to triggers server side scripts using the cron jobs.
To download a single file
wget https://domain.com/filename.zip
This command will download a file, and name it filename.zip(which is after the last / )
Use -O to specify the target local file name, like this
wget -O /home/useraccount/public_html/targetname.zip https://domain.com/filename.zip
This command will download a file, and name it targetname.zip