Linux script with curl to check webservice is up

后端 未结 6 796
难免孤独
难免孤独 2021-01-30 17:05

I have a webservice provided at http://localhost/test/testweb

I want to write a script to check if webservice is up with curl

If there a curl parame

6条回答
  •  余生分开走
    2021-01-30 17:23

    Use this:

    curl -o $CURL_OUTPUT -s -w %{http_code}\\n%{time_total}\\n $URL > $TMP_FILE 2>&1
    cat $TMP_FILE
    

提交回复
热议问题