summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/man
diff options
context:
space:
mode:
authoralm <alm@FreeBSD.org>1993-07-24 03:41:41 +0000
committeralm <alm@FreeBSD.org>1993-07-24 03:41:41 +0000
commit7ba7f71fb87ef037782d652683696d913db11ffc (patch)
tree7578273a5422657c14041d429f32172700ca1ebf /gnu/usr.bin/man
parente7dab97bd3161abc7a49674e22d009dcb3746cce (diff)
downloadFreeBSD-src-7ba7f71fb87ef037782d652683696d913db11ffc.zip
FreeBSD-src-7ba7f71fb87ef037782d652683696d913db11ffc.tar.gz
changed find . -name '*' to find . -type f
Diffstat (limited to 'gnu/usr.bin/man')
-rw-r--r--gnu/usr.bin/man/makewhatis/makewhatis.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/usr.bin/man/makewhatis/makewhatis.sh b/gnu/usr.bin/man/makewhatis/makewhatis.sh
index 7501be7..1d86d19 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)
OpenPOWER on IntegriCloud