change to hex and update DBs (#1284)

This commit is contained in:
NotSoToothless
2026-05-29 07:05:20 -07:00
committed by GitHub
parent 66e010c890
commit 6fb303e26f
5 changed files with 543 additions and 44 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env bash
# Pull TSS replay dirs from the server for local study.
# Run once manually: bash fetch_replays.sh
set -euo pipefail
REMOTE="srebot"
REMOTE_PATH="/mnt/HC_Volume_105581488/STORAGE/REPLAYS/TSS/"
LOCAL_PATH="./replays_sample"
mkdir -p "$LOCAL_PATH"
rsync -avz --progress \
--include="*/" \
--include="replay_data.json.gz" \
--exclude="*" \
"${REMOTE}:${REMOTE_PATH}" \
"$LOCAL_PATH/"
echo "Done. Files in: $LOCAL_PATH"