xwords/xwords4/dawg/mkbyodbins.sh
2020-07-07 11:54:45 -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