mirror of
				https://github.com/meilisearch/meilisearch.git
				synced 2025-11-03 17:36:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			275 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			275 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Requirements:
 | 
						|
# - curl
 | 
						|
# - grep
 | 
						|
 | 
						|
res=$(curl -s https://milli-benchmarks.fra1.digitaloceanspaces.com | grep -o '<Key>[^<]\+' | cut -c 5- | grep critcmp_results/ | cut -c 18-)
 | 
						|
 | 
						|
for pattern in "$@"
 | 
						|
do
 | 
						|
	res=$(echo "$res" | grep $pattern)
 | 
						|
done
 | 
						|
 | 
						|
echo "$res"
 |