Download this file
15 lines (12 with data), 300 Bytes
#! /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
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.