I want to write a script to download the WEbStorm IDE from Jetbrains and then do further stuffs. But I am unable to download the tar ball.
I am following this, but it doesnt solve my problem. downloading files using wget
The webpage where I want to download the file from is https://www.jetbrains.com/webstorm/download/download-thanks.html?platform=linux
It looks like it is quite simple, but I just get a plain html page all the time when I do a wget. Doing it over the browser address bar or addons like DownThemAll is completely fine.
Following is my command
wget 'https://www.jetbrains.com/webstorm/download/download-thanks.html?platform=linux' -O WebStorm.tar.gz
I can download the file from here:
wget https://download.jetbrains.com/webstorm/WebStorm-2017.2.4.tar.gz
but I could only find this URL after a little bit of digging. Is there a way to simply get the download file url by parsing the Download button?
Is it also possible to do via curl?