From 1b7072f47783fcef53320497de66b28f1dfe6dad Mon Sep 17 00:00:00 2001 From: Andrew Moore Date: Sat, 24 Jul 1993 03:41:41 +0000 Subject: [PATCH] changed find . -name '*' to find . -type f --- gnu/usr.bin/man/makewhatis/makewhatis.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.sh b/gnu/usr.bin/man/makewhatis/makewhatis.sh index 7501be7fc043..1d86d1993946 100644 --- a/gnu/usr.bin/man/makewhatis/makewhatis.sh +++ b/gnu/usr.bin/man/makewhatis/makewhatis.sh @@ -28,7 +28,7 @@ do do if [ -d $subdir ] then - for f in `find $subdir -name '*' -print` + for f in `find $subdir -type f -print` do sed -n '/^\.TH.*$/p /^\.Dt.*$/p @@ -41,7 +41,9 @@ do awk 'BEGIN {insh = 0; inSh = 0; Nd = 0} { if ($1 == ".TH" || $1 == ".Dt") sect = $3 - else if (($1 == ".br" && insh == 1) || ($1 == ".SH" && insh == 1) || ($1 == ".Sh" && inSh == 1)) { + else if (($1 == ".br" && insh == 1)\ + || ($1 == ".SH" && insh == 1)\ + || ($1 == ".Sh" && inSh == 1)) { if (i > 0 && nc > 0) { for (k= 1; k <= nc; k++) { namesect = sprintf("%s (%s)", name[k], sect)