Skip to content

Instantly share code, notes, and snippets.

@kenzo0107
Created June 16, 2015 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenzo0107/dbb361858ace00ae05ef to your computer and use it in GitHub Desktop.
Save kenzo0107/dbb361858ace00ae05ef to your computer and use it in GitHub Desktop.

Check URL exist

以下コマンドをMacローカルでterminalから実行

curl -v <URL>  2>&1 1>/dev/null | awk '{if($2~"HTTP") print}'
  • OK Pattern.
< HTTP/1.1 200 OK
  • NG Pattern
< HTTP/1.1 404 Not Found
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment