9951 explained code solutions for 126 technologies


jqGet all values of some command's json output


somecommand | jq '.[]'ctrl + c
somecommand

any command that has to output json, echo '{ "a": 1, "b": 2 }' for example

'.[]'

provide the value of each key/value pair