a curl command gives me a JSON output as follows:- [{"Description":"","Value":"bc","Key":"a"},{"Description":"","Value":"ef","Key":"d"},...]
Now I want to capture the values of only "Key" & "Value" in such a way that it if I perform echo $a
it gives "bc", echo $d
it gives "ef" etc.
Note: I am absolutely new in shell scripting/bash, thus this question
Thank you in advance