とキーの配列に値を追加します。は、私は、単純なJSON配列を持っているJQ
[
"smoke-tests",
"other-tests"
]
私は、単純なJSONに変換したい:
{"smoke-tests": true,
"other-tests": true
}
私はJQ例をいくつか試してみましたしかし、私が欲しいものは何もしていないようです。
jq '.[] | walk(.key = true)'
は、コンパイルエラーが発生します。
jq 'reduce .[] as $k ({}; .[$k]=true)' file
出力:
{
"smoke-tests": true,
"other-tests": true
}
おかげで、@peak。エレガントでシンプル。 – AG6HQ