What’s the simplest jq for mapping JSON array vals to dicts?
How can I make a key value dictionary using jq? If I do: cat api_fm.json | jq -r "[ .[].name, .[].status ]" I receive: [ "plugin", "c_docker_2", "c_docker_5", "c_docker_4", "c_docker_3", "c_docker_1", "Started", "Started", "Started", "Started", "Started", "Started" ] So, I…