| Filter json with jq | JQ | jq 'map(select(.actuatorModel | test(^AVP-3))) | map({actuatorModel, actuatorCode, mountSize_1, mountSize_2, driveSize, driveDepth})' | This filters on actuatorModel starting with AVP-3. | Edit
Delete |
| Filter json with jq | JQ | jq 'map(select(.actuatorModel | test(^AVP-3))) | map({actuatorModel, actuatorCode, mountSize_1, mountSize_2, driveSize, driveDepth})' | This filters on actuatorModel starting with AVP-3. | Edit
Delete |
| Filter json with jq | JQ | jq 'map(select(.actuatorModel | test(^AVP-3))) | map({actuatorModel, actuatorCode, mountSize_1, mountSize_2, driveSize, driveDepth})' | This filters on actuatorModel starting with AVP-3. | Edit
Delete |
| Search wordleanswers.json by answer case insensitive.... | JQ | jq '[.[] | select(.answer | test("^loris$"; "i")) | {answer, wordledate,attemptslist}]' wordleanswers.json | Wordleanswers.json contains all wordleanswers up to and including the date this was written..... | Edit
Delete |
| Search wordleanswers.json Json object array by a word in the attemptslist... | JQ | jq '[.[] | select(.attemptslist | index("Loris)) | {answer,wordledate, attemptslist}]' wordleanswers.json | Filters by Loris and outputs the answer,date and attemptslist. | Edit
Delete |