#!/bin/bash # List systems that already have bodies in the atlas DB 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) "