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?