Plan 9 from Bell Labs’s /usr/web/sources/plan9/sys/lib/man/permind/makind1

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#!/bin/rc
owd=`{pwd}
cd $1
for (i in *){
	sed -n '
	/^.TH *[^ ]* */{
		s///
		s/ .*//
		h
	}
	/SH.*NAM/{
		N
		s/.*\n//
		:x
		N
		/\n.SH.*/{
			s///
			s/^/'$i' /
			s/\n/ /g
			s/  */ /g
			G
			s/([^ ]*)(.*)\n(.*)/\1(\3)\2/
			s/[A-Z]\)/)/
			p
			d
		}
		s/\n\.[^ ]* */ /
		bx
	}
' $i
}
cd $owd
exit
# add to shell script to get file references
# in this case, pipe output thru uniq
	/^\.RF *[^ ]*/s//.F/
	/^\.FR(.* ).*/s//.F \1/
	/^\.F  */{
		s//$i /
		s/\.[^ .]*//
		G
		s/([^ ]*)(.*)\n(.*)/\1(\3)\2/
		s/[A-Z+]\)/)/
		p
	}

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.