xwords/xwords4/dawg/mkbyodbins.sh
Eric House 76dc78cd1c use sed instead of tr to uppercase -- everywhere
Required for some unicode chars, but might as well use it everywhere to
make copying easier.
2022-01-27 19:36:55 -08:00

9 lines
165 B
Bash
Executable file

#!/bin/sh
for INFO in $(ls */info.txt); do
DIR=$(dirname $INFO)
echo "*** processing $(basename $DIR) ***"
(cd $DIR && make clean byodbins)
done
make dict2dawg