This commit is contained in:
Bel LaPointe
2026-03-15 00:27:39 -06:00
parent 5101525607
commit bac048a685

20
.mise/tasks/search Executable file
View File

@@ -0,0 +1,20 @@
#! /usr/bin/env bash
#MISE description="TODO"
set -euo pipefail
cd "${MISE_PROJECT_ROOT}"
cities=()
for city in "$@"; do
cities+=("-t=$city")
done
searches=(
"-s=mobile home park=0.5"
"-s=schools=0.25"
"-s=water treatment facility=1.0"
"-s=landfill=1.5"
"-s=police department=0.1"
"-s=prison=2.5"
)
go run ./ "${searches[@]}" -d "${cities[@]}"