curlでは
$ curl http://hoge.com -X POST -d 'a=1&c=2'
などとしてPOSTでデータを送ることができますが, -d
オプションに@-
を渡せば受け取った標準入力をデータとしてcurlを撃てます.
$ なんかの処理 | curl http://hoge.com -X POST -d @-
夢が広がります.
Go to list of users who liked
More than 5 years have passed since last update.
curlでは
$ curl http://hoge.com -X POST -d 'a=1&c=2'
などとしてPOSTでデータを送ることができますが, -d
オプションに@-
を渡せば受け取った標準入力をデータとしてcurlを撃てます.
$ なんかの処理 | curl http://hoge.com -X POST -d @-
夢が広がります.
Register as a new user and use Qiita more conveniently
Go to list of users who liked