mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-28 07:58:08 +01:00
script encapsulating sql query that's useful to run (with 'watch') along with discon_ok2.sh
This commit is contained in:
parent
c4a4a39438
commit
d1244da284
1 changed files with 30 additions and 0 deletions
30
xwords4/relay/scripts/showinplay.sh
Executable file
30
xwords4/relay/scripts/showinplay.sh
Executable file
|
@ -0,0 +1,30 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -e -u
|
||||||
|
|
||||||
|
LIMIT=10000
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
echo "usage: $0 [--limit <n>]"
|
||||||
|
}
|
||||||
|
|
||||||
|
while [ $# -gt 0 ]; do
|
||||||
|
case $1 in
|
||||||
|
--limit)
|
||||||
|
LIMIT=$2
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
*) usage
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
QUERY="WHERE NOT -NTOTAL = sum_array(nperdevice)"
|
||||||
|
|
||||||
|
echo "Row count:" $(psql -t xwgames -c "select count(*) FROM games $QUERY;")
|
||||||
|
|
||||||
|
echo "SELECT dead,connname,cid,room,lang,ntotal,nperdevice,nsent,ctime,mtimes "\
|
||||||
|
"FROM games $QUERY ORDER BY NOT dead, connname LIMIT $LIMIT;" \
|
||||||
|
| psql xwgames
|
||||||
|
|
Loading…
Add table
Reference in a new issue