mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-30 00:55:00 +08:00
15 lines
283 B
Bash
Executable File
15 lines
283 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Requirements:
|
|
# - curl
|
|
# - grep
|
|
|
|
res=$(curl -s https://milli-benchmarks.fra1.digitaloceanspaces.com | grep -oP "(?<=<Key>)[^<]+" | grep -oP --color=never "(?<=^critcmp_results/).+")
|
|
|
|
for pattern in "$@"
|
|
do
|
|
res=$(echo "$res" | grep $pattern)
|
|
done
|
|
|
|
echo "$res"
|