summaryrefslogtreecommitdiff
path: root/bin/rtt-show-replay
blob: 4bbbdce40caa2895def1918d1d609d929776523d (plain)
1
2
3
4
5
6
7
#!/bin/bash
if [ -n "$1" ]
then
	sqlite3 db "select replay_id, role, action, arguments from game_replay where game_id=$1"
else
	echo "usage: rtt-show-replay GAME"
fi