mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +01:00
15 lines
258 B
Bash
15 lines
258 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# I use this thing this way: playnum.sh 10 2>&1 | ./wordlens.pl
|
||
|
|
||
|
NUM=$1
|
||
|
echo "NUM=$NUM"
|
||
|
|
||
|
while :; do
|
||
|
|
||
|
../linux/xwords -u -s -r Eric -d ../linux/dicts/OSPD2to15.xwd -q -i
|
||
|
|
||
|
NUM=$(( NUM - 1 ));
|
||
|
|
||
|
if (( $NUM <= 0 )); then exit 0; fi
|
||
|
done
|