summaryrefslogtreecommitdiff
path: root/tools/export-game.sh
blob: 19cd4e735803323a5190817a56d04bca490ab24e (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
if [ -n "$1" ]
then
	sqlite3 db "select export from game_export_view where game_id=$1"
else
	echo "usage: bash tools/export-game.sh GAME > game.json"
fi