---
title: curlでHTTP Statusだけ取得するメモ
tags: ["curl"]
categories: ["Dev", "curl"]
date: 2020-07-16T15:21:10Z
updated: 2020-08-19T01:18:02Z
---

メモ

```
curl -s http://localhost:8080 -o /dev/null -w '%{http_code}\n'
```
