Plan 9 from Bell Labs’s /usr/web/sources/contrib/steve/rc/contrib-man-list

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


#!/bin/rc

contrib=/n/sources/contrib

for(user in $contrib/*)
	if(test -d $user/replica && test -d $user/root){
		who=`{basename $user}
		for(replica in $user/replica/*){
			pkg=`{basename $replica}
			grep '^sys/man.*(([0-9][0-9])|[1-9])$' $replica/db | 
				while(page=`{read})
					echo $who	$pkg	$page(1)
		}
	}

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.