LoginSignup
1
0

More than 5 years have passed since last update.

curl オプションメモ

Posted at

備忘

  • -I : ヘッダのみ表示
  • -H : Hostでホスト指定
$ curl -I http://192.168.0.100/myindex.html -H 'Host: test.example.com'
  • -D - : ヘッダ含んで標準出力ダンプ
$ curl -D - http://test.example.com/
  • -O : ファイルのダウンロード
$ curl http://test.example.com/myindex.html -O
  • -o : ファイル名指定しダウンロード
$ curl http://test.example.com/myindex.html -o aaa.html
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0