curlでレスポンスのHTTPステータスとbodyを取得する

curlで実行時のレスポンスHTTPステータスとBodyを取得したい 方法 /get_https-status_body.sh #!/bin/bash response=$(curl -w '\n%{http_code}' -sL --url https://szk302.dev) echo "status: ${response: -3}" echo "body: ${response:0:-3}" 結果 console status: 200 body: <!doctype html><html lang=ja dir=auto><head><meta name=generator content="Hugo 0.80.0&...

2022-04-05T08:10:00+09:00 · 1 分 · Szk302

curlでHTTPステータスコードが200になるまでwaitする

curlを使用してHTTPステータスコードが200になるまで待ちたい 対応 以下のコードで5秒間隔でHTTPステータスが200になるまで待ち、3...

2022-02-19T15:49:00+09:00 · 1 分 · Szk302