8 lines
		
	
	
		
			247 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			247 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
 #!/bin/bash
 | 
						|
 
 | 
						|
API_URL_BASE="https://gerrit.wikimedia.org/r/changes"
 | 
						|
QUERY_STRING="project:mediawiki/core+before:2013-03-30+HTTPS"
 | 
						|
 | 
						|
API_URL="${API_URL_BASE}/?q=${QUERY_STRING}"
 | 
						|
 | 
						|
curl -X GET "$API_URL" -H "Accept: application/json" -o response.json |