#!/usr/bin/env bash # List systems that already have bodies in the atlas DB. # Usage: tooling/atlas-systems-done set -euo pipefail cd "$(dirname "$0")/.." tooling/atlas list-bodies 2>/dev/null | python3 -c " import sys, json for s in sorted(set(b['system_id'] for b in json.load(sys.stdin))): print(s) "