「Linux」curlでテストデータをpostする
1.ファイルの内容を送る
$ curl -X POST -d @test.txt 127.0.0.1
2.標準入力
$ cat test.txt | curl -X POST -d @- 127.0.0.1
3.URLエンコード
$ curl -X POST –data-urlencode @test.txt 127.0.0.1
Coding Changes the World
1.ファイルの内容を送る
$ curl -X POST -d @test.txt 127.0.0.1
2.標準入力
$ cat test.txt | curl -X POST -d @- 127.0.0.1
3.URLエンコード
$ curl -X POST –data-urlencode @test.txt 127.0.0.1