Untitled Flashcards Set

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

jq

A lightweight and flexible command-line JSON processor.

2
New cards

jq '.'

Command to view a JSON file in a readable format.

3
New cards

jq 'first(.[])'

Command to read the first JSON element or object from a file.

4
New cards

jq 'last(.[])'

Command to read the last JSON element from a file.

5
New cards

jq 'limit(3;.[])'

Command to read the top 3 JSON elements.

6
New cards

jq '.[2:4]'

Command to read the 2nd and 3rd JSON elements, with left side inclusive and right side exclusive.

7
New cards

jq '.[] | [.balance,.age]'

Command to extract individual values and pipe the output.

8
New cards

jq '.[] | [.age, 65 - .age]'

Command to extract individual values and perform calculations on them.

9
New cards

jq '.[] | [.company, .phone, .address] | @csv'

Command to return a CSV from JSON data.

10
New cards

jq '.[] | [.company, .phone, .address] | @tsv'

Command to return Tab Separated Values (TSV) from JSON.

11
New cards

jq '.[] | [.company, .phone, .address] | join("|")'

Command to return a custom pipeline delimiter for JSON outputs.

12
New cards

jq '.[] | [.balance,(.age | tostring)] | join("|")'

Command to convert numbers to strings and return results with a pipe delimiter.

13
New cards

jq '.[] | [.friends[].name]'

Command to process an array and return names as a list or array.

14
New cards

jq '.[] | [.name.first, .name.last]'

Command to parse multi-level values and return first and last names as a list.

15
New cards

jq 'map(select(.index > 2))'

Command to query values based on a condition.

16
New cards

jq 'sort_by(.age)'

Command to sort JSON elements by age in ascending order.

17
New cards

jq 'sort_by(-.age)'

Command to sort JSON elements by age in descending order.

18
New cards

jq 'sort_by(.age, .index)'

Command to sort JSON elements on multiple keys.