blob: 543bf1a5685645c61f70427e9a26d4da0bb318ac [file] [log] [blame]
rsc638f5c02005-01-14 20:12:19 +00001#!/usr/local/plan9/bin/rc
2
3. 9.rc
4
5# creates the index used by lookman
6>lookman.index
7for(i in $PLAN9/man/man[0-9]*/[a-z0-9:]*.[0-9]*){
8 deroff -w_ < $i |
9 tr 'A-Z' 'a-z' |
10 sort -u |
11 comm -23 - junkwords |
12 sed 's@$@ '$i'@' >>lookman.index # stick file name on end of line
13}
14sort -o lookman.index lookman.index