case $CONFIG in '') if test -f config.sh; then TOP=.; elif test -f ../config.sh; then TOP=..; elif test -f ../../config.sh; then TOP=../..; elif test -f ../../../config.sh; then TOP=../../..; elif test -f ../../../../config.sh; then TOP=../../../..; else echo "Can't find config.sh."; exit 1 fi . $TOP/config.sh ;; esac case "$0" in */*) cd `expr X$0 : 'X\(.*\)/'` ;; esac echo "Extracting pat/patindex (with variable substitutions)" $spitshell >patindex < # # $Log: patindex.SH,v $ # Revision 3.0.1.1 1993/08/19 06:42:37 ram # patch1: leading config.sh searching was not aborting properly # # Revision 3.0 1993/08/18 12:10:44 ram # Baseline for dist 3.0 netwide release. # zcat='$zcat' test='$test' sed='$sed' grep='$grep' !GROK!THIS! $spitshell >>patindex <<'!NO!SUBS!' if test -d bugs; then cd bugs fi for i in patch? patch??; do if $test -f $i; then echo "=== $i ===" $grep '^Subject: ' $i | $sed 's/^patch\(.*\):Subject/\1/' fi done for i in patch?.Z patch??.Z; do if $test -f $i; then name=`echo $i | $sed "s|\.Z$||"` echo "=== $name ===" $zcat $i | $grep '^Subject: ' | $sed 's/^patch\(.*\):Subject/\1/' fi done !NO!SUBS! chmod 755 patindex $eunicefix patindex