I am trying to make a program that can convert a series of manga scans into one pdf file, and I don't want to have to attempt to download the picture to determine if I have the right url. Is there a shell scripting command that I can use to just check if a web page exists?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Under a *NIX, you can use
Then you can take only the first line, which contains the HTTP status code (200 OK, 404 Not Found, etc.):
And then check if you got a decent response (status code is 200 or 3**):
This will output the first line if the status code is okay, or nothing if it isn't. You can also pipe that to /dev/null to get no output, and use
EDIT |
|||||
|
|
wget or cURL will do the job. See here wget or cURL for details and download locations. Supply the URL to these command-line tools and check the response. |
|||
|
|