LoginSignup
0
1

More than 5 years have passed since last update.

jq で curl とかに渡す JSON パラメータをいい感じに組み立てる

Posted at

jq なしでやろうとするとエスケープとか難しいので。

REQUEST_BODY=`jq \
  --null-input \
  --monochrome-output \
  --compact-output \
  --arg pull_request_body "Hey yo!" \
  '{title: "Title", head: "feature", base: "master", body: $pull_request_body}'`

curl https://api.example.com -d "${REQUEST_BODY}" -H "Content-type: application/json"
0
1
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
0
1