21 lines
368 B
Bash
Executable File
21 lines
368 B
Bash
Executable File
#! /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[@]}"
|