Unless you have ftp access to the site, then you cannot download a file from the net from the command line using standard Win9x programs.
If you DO have ftp access, then everything is fine and easy, you can write something like in a batch file.
ftp ftp.mysite.com
myusername
mypassword
cd path
get filename C:\dir
exit
|