mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +01:00
7 lines
149 B
Bash
Executable file
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
|