mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 12:38:55 +01:00
edfcdb171c
Co-authored-by: Irevoire <tamo@meilisearch.com>
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"
|