Quantcast
Channel: Active questions tagged jq - Stack Overflow
Viewing all articles
Browse latest Browse all 519

How to loop through a JSON array of objects in bash which includes space characters

$
0
0

I'm calling an API which returns a JSON response that includes an array of objects. I would like to store the objects in an array in bash which I want to loop through.

It has worked for me to use jq -c to make use of the compact output:

json_response='{"value":[{"displayName":"1"},{"displayName":"2"},{"displayName":"3"}]}'workspaces=$(echo $json_response | jq -c '.value.[]')for workspace in ${workspaces[@]}; do    echo $workspacedone

This is the output:

{"displayName":"1"}{"displayName":"2"}{"displayName":"3"}

However, this doesn't work if there is a space character in the displayName:

json_response='{"value":[{"displayName":"1"},{"displayName":"2"},{"displayName":"3"},{"displayName":"Has Space"}]}'workspaces=$(echo $json_response | jq -c '.value.[]')for workspace in ${workspaces[@]}; do    echo $workspacedone

The output then contains a line break where the space character was:

{"displayName":"1"}{"displayName":"2"}{"displayName":"3"}{"displayName":"HasSpace"}

How can I still loop through the objects even if there is a space character?


Viewing all articles
Browse latest Browse all 519

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>