42

我有一个提供的网络服务http://localhost/test/testweb

我想编写一个脚本来检查 web 服务是否与 curl

如果给定 curl 参数,则返回200 OKok true false 以便我可以使用它是 linux 脚本中的 if-else 块

4

6 回答 6

76
curl -sL -w "%{http_code}\\n" "http://www.google.com/" -o /dev/null
  • -s= 静默 cURL 的输出
  • -L= 关注重定向
  • -w= 自定义输出格式
  • -o= 将 HTML 输出重定向到/dev/null

例子:

[~]$ curl -sL -w "%{http_code}\\n" "http://www.google.com/" -o /dev/null
200

\\n如果我要捕获输出,我可能会删除。

于 2012-10-05T14:07:53.263 回答
8

我用:

curl -f -s -I "http://example.com" &>/dev/null && echo OK || echo FAIL

-f --fail 在 HTTP 错误时静默失败(根本没有输出)
-s --silent 静默模式
-I --head 仅显示文档信息

注意:
根据需要,您还可以删除“-I”,因为在某些情况下您需要执行 GET 而不是 HEAD

于 2020-02-25T15:15:42.263 回答
6

与@burhan-khalid 相同,但添加了--connect-timeout 3and --max-time 5

test_command='curl -sL \
    -w "%{http_code}\\n" \
    "http://www.google.com:8080/" \
    -o /dev/null \
    --connect-timeout 3 \
    --max-time 5'
if [ $(test_command) == "200" ] ; 
then
   echo "OK" ;
else
   echo "KO" ;
fi
于 2017-06-05T08:04:28.097 回答
0

这将通过 wget2>&1管道检查标头 stderr 到 stdout grep过滤器 -O /dev/null只是抛出页面的内容

if [ "\`wget http://example.org/ -O /dev/null -S --quiet 2>&1 | grep '200 OK'\`" != "" ]; 
then 
   echo Hello; 
fi;

我不知道卷曲,但仍然是一个解决方案

于 2012-10-05T14:09:56.140 回答
0

我需要一个更好的答案,所以我写了下面的脚本。

fakePhrase 用于检测 ISP“搜索辅助”广告软件 HTTP 响应。

#!/bin/bash

fakePhrase="verizon"
siteList=(
  'http://google.com'
  'https://google.com'
  'http://wikipedia.org'
  'https://wikipedia.org'
  'http://cantgettherefromhere'
  'http://searchassist.verizon.com'
)

exitStatus=0

function isUp {
  http=`curl -sL -w "%{http_code}" "$1" -o temp_isUp`
  fakeResponse=`cat temp_isUp | grep $fakePhrase`
  if [ -n "$fakeResponse" ]; then
    http=$fakePhrase
  fi
  case $http in
  [2]*)
    ;;
  [3]*)
    echo 'Redirect'
    ;;
  [4]*)
    exitStatus=4
    echo "$1 is DENIED with ${http}"
    ;;
  [5]*)
    exitStatus=5
    echo "$1 is ERROR with ${http}"
    ;;
  *)
    exitStatus=6
    echo "$1 is NO RESPONSE with ${http}"
    ;;
  esac
}

for var in "${siteList[@]}"
do
  isUp $var
done

if [ "$exitStatus" -eq "0" ]; then
  echo 'All up'
fi

rm temp_isUp
exit $exitStatus
于 2015-11-18T18:02:43.683 回答
0

用这个:

curl -o $CURL_OUTPUT -s -w %{http_code}\\n%{time_total}\\n $URL > $TMP_FILE 2>&1
cat $TMP_FILE
于 2016-06-10T14:17:36.660 回答