Hi there,
It took me a while to get the JSON handling package, JQ, properly up and running on my Linode server. I am not an experienced SSH or CLI programmer, and the info offered in the tutorial did not get me far enough. I found this additional tutorial online to be really helpful, and was the solution that worked for me: https://www.zditect.com/code/javascript/using-jq-to-process-json-on-the-command-line-linode.html
It offers a few Linode-compatible solutions that can be executed from within the SSH console. This is the command I used:
sudo apt-get install jq and it worked, no frills.
Hi there, It took me a while to get the JSON handling package, JQ, properly up and running on my Linode server. I am not an experienced SSH or CLI programmer, and the info offered in the tutorial did not get me far enough. I found this additional tutorial online to be really helpful, and was the solution that worked for me: https://www.zditect.com/code/javascript/using-jq-to-process-json-on-the-command-line-linode.html
It offers a few Linode-compatible solutions that can be executed from within the SSH console. This is the command I used:
sudo apt-get install jq
and it worked, no frills.Thanks for the tutorial.