シェルスクリプト内の一重引用符の中にコメント(スクリプトに影響を与えないコメントアウトされたコードまたはメモ)を入れることはできますか?
これらを機能させるために、次のことを試みました。
# comment
\# comment
\/\* comment \*\/
以下は私がやろうとしていることの例です。コメントはハッシュで始まり、curlリクエストのデータパッケージ内の単一引用符で囲まれていることがわかります。
curl -XPOST 'http://ec2-54-234-64-66.compute-1.amazonaws.com:9200/nsns/nsn/_mapping?pretty=true' -d '{
"nsn" : {
"type" : "object",
"include_in_all" : "false",
"index" : "no",
"properties" : {
# this data is used for facetting END
"id" : { "type" : "long", "include_in_all" : "true" },
"BDC_CODE" : { "type" : "byte" },
"KID" : { "type" : "byte" },
"ITEM_STANDARDIZATION_CODE" : { "type" : "string" },
# we don't know what these field's data look like yet
"stock_on_hand" : { "type" : "integer" },
"non_stocked_items" : { "type" : "integer" },
"stocked_restrictions" : { "type" : "string" },
"consistency_of_spend" : { "type" : "string" },
"WSDC" : { "type" : "string" }
}
}
}'