mirror of
				https://github.com/cheat/cheat.git
				synced 2025-11-04 07:45:28 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			177 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			177 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Pretty print the json
 | 
						|
jq "." < filename.json
 | 
						|
 | 
						|
# Access the value at key "foo"
 | 
						|
jq '.foo'
 | 
						|
 | 
						|
# Access first list item
 | 
						|
jq '.[0]'
 | 
						|
 | 
						|
# Slice & Dice
 | 
						|
jq '.[2:4]'
 | 
						|
jq '.[:3]'
 | 
						|
jq '.[-2:]'
 |