Ive downloaded a file from this site with the following curl command:
https://www.modern.ie/en-us/virtualization-tools#downloads
# Copy/paste the command below into your terminal to begin downloading all the required files
# Don't have cURL or want to learn more, visit http://curl.haxx.se/
curl -O -L "https://www.modern.ie/vmdownload?platform=mac&virtPlatform=virtualbox&browserOS=IE10-Win8.1&parts=5&filename=VMBuild_20131127/VirtualBox/IE10_Win8/Mac/IE10.Win8.For.MacVirtualBox.part{1.sfx,2.rar,3.rar,4.rar,5.rar}"
Where does the file actually go? I cant seem to see it anywhere on my machine.
vmdownloadin the directory where you ran that statement. – Darth Android Oct 28 '14 at 18:30vmdownloadis a cgi script with the ? providing options into it. – headkase Oct 28 '14 at 18:31curlwill use as the name when saving the result of requesting that script. On the HTTP level, the file being requested ishttps://www.modern.id/vmdownload, sovmdownloadis the name thatcurlwants to use. The rest is just parameterscurlis sending to the server, so it doesn't factor into the naming of the file. – Darth Android Oct 28 '14 at 18:33curlcan't be so brain-dead as to call them the name of the script instead of their proper names? – headkase Oct 28 '14 at 18:35curlsupposed to know that those parameters are the filename? You could use the parameter calledfilenamefor anything - maybe the name of the file to upload; What if the website usesnameorfnameinstead? There's no standards for any of this, so there's no way forcurlto know what the filename might be, other than the script name.curldoesn't even know that it's calling a script. – Darth Android Oct 28 '14 at 18:39