Files
gimp/help/make-help-stubs.sh
Michael Natterer 5a01821b1f EEEEEEEEEEK!!!
1999-10-04 08:40:33 +00:00

15 lines
164 B
Bash
Executable File

#!/bin/sh
path=`pwd`
dirs=`find C -type d | grep -v CVS`
for i in $dirs
do
cd $i
PATH=$path:$PATH makefile-am.sh
PATH=$path:$PATH dir-template.sh
cd $path
done