I am working on a remote Ubuntu system. I want to download a zip file from the website mentioned below to the remote system. So, I used w3m to do so as I am accessing the remote system via command line. I ran the command:
w3m http://nlp.stanford.edu/projects/glove/ which takes me to the website and I select the zip file "glove.6B.zip" which starts downloading the moment I click it and I can see the download process progressing.
The download process finishes successfully and then the downloaded zip and the files contained in it is displayed:
Archive: /home/ubuntu/.w3m/w3mtmp2061-0.zip
Length Date Time Name
--------- ---------- ----- ----
171350079 2014-08-04 20:15 glove.6B.50d.txt
347116733 2014-08-04 20:14 glove.6B.100d.txt
693432828 2014-08-04 20:14 glove.6B.200d.txt
1037962819 2014-08-27 19:19 glove.6B.300d.txt
--------- -------
2249862459 4 files
The display above shows the location of the zip file in my remote system. But, when I quit w3m and go to the path /home/ubuntu/.w3m, the file w3mtmp2061-0.zip is not present there. I read somewhere that w3m saves temporary files which are deleted the moment you close w3m. How do I get the downloaded zip from the the above mentioned website to my remote system via command line. What am I doing wrong?