1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-05-26 09:56:05 +02:00
zsh/Util/preconfig
2009-06-01 17:23:28 +00:00

15 lines
300 B
Bash
Executable File

#! /bin/sh
find . -name .git -prune -o -name '?*.*' -prune -o -name .preconfig -print | (
while read pre; do
cmd=`echo $pre | sed 's,^,cd ,;s,/\([^/]*\)$, \&\& ./\1,'`
echo >&2 "$cmd"
if ( eval "$cmd" ); then :; else
echo "$0: $pre failed (status $?)"
exit 1
fi
done
)
exit 0