11

I am now out of institute, but need to download paper from IEEExplore.

I can ssh to the institute server. I think I should be able to access IEEExplore there, but I don't know how to download.

Suppose I am out of institute, and want to download this paper:

http://ieeexplore.ieee.org/xpl/articleDetails.jsp?reload=true&arnumber=5738219&abstractAccess=no&userType=

I have tried:

wget http://ieeexplore.ieee.org/xpl/articleDetails.jsp?reload=true&arnumber=5738219&abstractAccess=no&userType=
-O mypaper.pdf

but mypaper.pdf turns out to be a broken pdf file.

Could anyone give some suggestions?

keepAlive
  • 6,369
  • 5
  • 24
  • 39
ulyssis2
  • 1,165
  • 3
  • 10
  • 24
  • just to complete the solution. step1: ssh into the server, step2: use wget to download the paper, step3: use scp to copy the paper from the remote server to the local disk. – ulyssis2 Mar 04 '17 at 22:21

2 Answers2

17

I found http://techqe.blogspot.com/2009/09/quick-download-ieee-paper.html, which provides the following solution:

  1. Identify the "arnumber" for the paper, in the hyperlink you found while browsing. In your example, it's 5738219

  2. Enter the following command at your shell:

    wget "http://ieeexplore.ieee.org/stampPDF/getPDF.jsp?tp=&isnumber=&arnumber=5738219" -O paper.pdf
    

Your paper will now be saved in "paper.pdf"

M. Anthony Aiello
  • 1,064
  • 1
  • 11
  • 21
0

You can use your institute server as a socks proxy and download as usual using your favourite method.

ssh -D <portNumber> username@serverip

Now the socks proxy has been setup on localhost:portNumber. You can apply the proxy system wide based on your operating system and download as usual.

Raamakrishnan A.
  • 515
  • 3
  • 14