#!/bin/sh

[ -n "$1" ] || { echo "$0 <json file>"; exit -1; }

json=$1
fixed=${json%.*}-fixed.json


jq -f gomoku-jq-filter.txt $json > $fixed
