mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
9 lines
281 B
Bash
Executable file
9 lines
281 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# This script just runs the curses app with a set of params known to
|
|
# work. At least when it was last committed. :-)
|
|
|
|
WD=$(cd $(dirname $0)/.. && pwd)
|
|
cd $WD
|
|
./obj_linux_memdbg/xwords --curses --name Eric --robot Kati --dict-dir ./ --game-dict ../dict.xwd 2>/dev/null
|
|
|