Sophie

Sophie

distrib > Mandriva > 8.1 > i586 > by-pkgid > 628e26a49117deea42e952d5b0d0f0d7 > files > 34

zsh-doc-4.0.2-2mdk.i586.rpm

#! /bin/sh

find . -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