xwords/xwords4/dawg/mkbyodbins.sh
2020-07-07 10:37:23 -07:00

7 lines
147 B
Bash
Executable file

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