This repository provides examples and tests for using the jq command in Linux. jq is a lightweight and flexible command-line JSON processor, which allows you to parse, filter, and transform JSON data with ease.
To use jq, you need to have it installed on your Linux system. You can install jq using your package manager. Here are some common installation commands:
sudo apt-get update
sudo apt-get install jqto use or test different commands you can execute:
./commands/commandIdentityOperator.sh
thats make you print in standard output entire seaCreatures.json.
./commands/commandNamesOfSeaCreatures.sh
"Sammy"
"Bubbles"
"Splish"
"Splash"
Can see a preview of this in file namesOfSeaCreatures.txt
to this tutorial i follow this tutorial: https://www.digitalocean.com/community/tutorials/how-to-transform-json-data-with-jq
MIT