Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
二重引用符に何かを代入するにはどうすればよいですか:
curl -u "bk322:$passw" https://api.github.com/user/repos -d "{'name':"$title"}"
私はそれを作ることができません
"{'name':\"$title\"}"
この方法では、JSON パーサーが私の意味を理解できないためです。
JSONパーサーが気に入らないのは一重引用符だと思います。
試す:
curl -u "bk322:$passw" https://api.github.com/user/repos -d "{\"name\":\"$title\"}"