If your hosting provider allows a jailshell and you don't have access to wget, you can use curl to grab files. Here is how you grab a file:
curl -O http://www.accutest.com/file.extIf you accidentally get disconnected, you can easily resume using
curl -C - -O http://www.accutest.com/file.extOr use the second command by default so you can simply pull it out from history
curl -O http://www.accutest.com/file.extIf you accidentally get disconnected, you can easily resume using
curl -C - -O http://www.accutest.com/file.extOr use the second command by default so you can simply pull it out from history