diff options
Diffstat (limited to 'tools/writegame.sh')
-rw-r--r-- | tools/writegame.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/writegame.sh b/tools/writegame.sh new file mode 100644 index 0000000..ea0f599 --- /dev/null +++ b/tools/writegame.sh @@ -0,0 +1,7 @@ +#!/bin/bash +if [ -n "$1" -a -f "$2" ] +then + sqlite3 db "update game_state set state=readfile('$2') where game_id = $1" +else + echo "usage: bash tools/writegame.sh GAME state.json" +fi |