Annotation of researchv10dc/doc/run, revision 1.1.1.1

1.1       root        1: pkg=-ms
                      2: name=$1
                      3: shift
                      4: 
                      5: case $name in
                      6: 
                      7: index)
                      8:        troff $pkg $* /usr/doc/v7index
                      9:        ;;
                     10: as)
                     11:        tbl /usr/doc/assembler | troff $pkg $*
                     12:        ;;
                     13: ed*)
                     14:        troff $pkg $* /usr/doc/edtut/e*
                     15:        ;;
                     16: adv.ed)
                     17:        troff $pkg $* /usr/doc/adv.ed/ae*
                     18:        ;;
                     19: trofftut)
                     20:        troff $pkg $* /usr/doc/trofftut/tt*
                     21:        ;;
                     22: make)
                     23:        troff $pkg $* /usr/doc/make
                     24:        ;;
                     25: sum*|hel*)
                     26:        eqn /usr/doc/summary/hel* | troff $pkg $*
                     27:        ;;
                     28: cacm)
                     29:        refer -e /usr/doc/cacm/p* | tbl | troff $pkg $*
                     30:        ;;
                     31: impl*)
                     32:        refer -e /usr/doc/implement | troff $pkg $*
                     33:        ;;
                     34: learn)
                     35:        refer -e /usr/bwk/learnpaper/p? | tbl | troff $pkg $*
                     36:        ;;
                     37: bc)
                     38:        troff $pkg $* /usr/doc/bc
                     39:        ;;
                     40: dc)
                     41:        eqn /usr/doc/dc | troff $pkg $*
                     42:        ;;
                     43: eqn)
                     44:        eqn /usr/doc/eqn/e* | troff $pkg $*
                     45:        ;;
                     46: eqnguide)
                     47:        eqn /usr/doc/eqn/g* | troff $pkg $*
                     48:        ;;
                     49: troff)
                     50:        case $1 in
                     51:        -g)     shift; cd /usr/doc/troff; gprint $* ;;
                     52:        *)      cd /usr/doc/troff; tprint $* ;;
                     53:        esac
                     54:        ;;
                     55: cman)
                     56:        x=/usr/bwk/c
                     57:        sed -f $x/cwscript $x/v2header $x/a1.?* | tbl | eqn '-d$$' | troff -rv7 $pkg $* $x/v2macs -
                     58:        ;;
                     59: cexten)
                     60:        x=/usr/bwk/c
                     61:        sed -f $x/cwscript $x/cexten | troff $pkg $* $x/v2macs -
                     62:        ;;
                     63: ctour)
                     64:        troff $pkg $* ctour/cdoc*
                     65:        ;;
                     66: shell)
                     67:        x=/usr/srb/tm/sh
                     68:        refer -e $x/maclib $x/t1.cstr $x/t[234] | troff -$pkg $*
                     69:        ;;
                     70: sed)
                     71:        troff $pkg $* /usr/lem/sed/memo/nmemo
                     72:        ;;
                     73: f77)
                     74:        tbl /usr/sif/fort/doc/f77.v7 | eqn | troff $pkg $*
                     75:        ;;
                     76: begin*)
                     77:        eqn -s9 /usr/doc/beginners/u* | troff $pkg $*
                     78:        ;;
                     79: uprog)
                     80:        x=/usr/doc/uprog
                     81:        sed -f $x/cwscript $x/p? | troff $pkg $* $x/p.mac -
                     82:        ;;
                     83: yacc)
                     84:        refer -e /usr/doc/yacc/ss* | troff $pkg $*
                     85:        ;;
                     86: lint)
                     87:        refer -e /usr/doc/lint | troff $pkg $*
                     88:        ;;
                     89: ratfor)
                     90:        troff $pkg $* /usr/bwk/rf/rfmemo/m*
                     91:        ;;
                     92: m4)
                     93:        troff $pkg $* /usr/bwk/m4/memo 
                     94:        ;;
                     95: refer)
                     96:        refer /usr/doc/mel/refer | tbl | troff $pkg $*
                     97:        ;;
                     98: pub*)
                     99:        tbl /usr/doc/mel/pubuse | troff -rP1 $pkg $*
                    100:        ;;
                    101: lex)
                    102:        tbl /usr/doc/lex/lextypeset | troff -mcp $*
                    103:        ;;
                    104: tbl)
                    105:        tbl /usr/doc/mel/tables | eqn | troff $pkg $*
                    106:        ;;
                    107: ms)
                    108:        tbl /usr/doc/mel/msoutside | troff $pkg $*
                    109:        tbl /usr/doc/mel/outrefcd | eqn | troff $*
                    110:        ;;
                    111: awk)
                    112:        refer -e /usr/bwk/awk/memo | tbl | troff $pkg $*
                    113:        ;;
                    114: adb)
                    115:        troff $pkg $* /usr/doc/adb/tut*
                    116:        ;;
                    117: password)
                    118:        tbl /usr/rhm/mm/mm78-5 | eqn | troff $pkg $*
                    119:        ;;
                    120: secur*)
                    121:        troff $pkg $* /usr/doc/security
                    122:        ;;
                    123: uucp)
                    124:        troff $pkg $* /usr/doc/uucp/implement
                    125:        ;;
                    126: uucpbs)
                    127:        refer -e /usr/doc/uucp/network | tbl | troff $pkg $*
                    128:        ;;
                    129: iosys)
                    130:        troff $pkg $* /usr/doc/iosys 
                    131:        ;;
                    132: port|p*tour)
                    133:        refer -e /usr/doc/porttour/porttour? | troff $pkg $*
                    134:        ;;
                    135: set*)
                    136:        troff $pkg $* /usr/doc/setup
                    137:        ;;
                    138: regen)
                    139:        troff $pkg $* /usr/doc/regen
                    140:        ;;
                    141: *)
                    142:        echo 'what is' $name 1>&2
                    143:        ;;
                    144: 
                    145: esac

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.