I have a file that looks as below:
{
\"repositories\": [
{
\"id\": \"156c48fc-f208-43e8-a631-4d12deb89fa4\",
\"namespace\": \"rhel12\",
\"namesp
Here is another solution. Assuming the requirements
I want to get only name values with each of them in a new line so that I can use while read -r line.
Can you please how can i get output in format rhel12/rhel6.6 In other words, I need o/p in format namespace/name
if the data is in data.json
then the command
jq -M -r '.repositories[] | "\(.namespace)/\(.name)"' data.json
should produce
rhel12/rhel6.6
rhel12/rhel7