ack/distr/dwalk

31 lines
454 B
Plaintext
Raw Normal View History

1985-04-14 23:26:24 +00:00
: ${CDIR=.}
1988-08-01 09:00:03 +00:00
if [ $# = 1 ]
then
${DD-:} $CDIR $1
else
${DD-:} $CDIR
fi
1988-04-08 12:50:10 +00:00
${DF-:} $CDIR .distr
if test ! -r $DESTDIR/$CDIR/.distr
1985-04-14 23:26:24 +00:00
then
1991-10-16 13:28:48 +00:00
echo ++ no .distr in $CDIR 1>&2
1985-04-14 23:26:24 +00:00
exit 0
fi
1988-04-08 12:50:10 +00:00
for i in `cat $DESTDIR/$CDIR/.distr`
1985-04-14 23:26:24 +00:00
do
if test -d $i
then
( if cd $i
then
CDIR=$CDIR/$i
export CDIR
1990-07-30 14:32:43 +00:00
exec $DDIR/dwalk $*
1985-04-14 23:26:24 +00:00
else
1991-10-16 13:28:48 +00:00
echo ++ Could not access $CDIR/$i 1>&2
1985-04-14 23:26:24 +00:00
fi
)
else
${DF-:} $CDIR $i
fi
done