xwords/xwords4/dawg/mkbyodbins.sh
2020-07-25 13:58:29 -07:00

7 lines
149 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