manr: fix
[copyleftie-scripts.git] / man
blob89c6340836575815baf7e28177083bccc3ecb9b9
1 #!/bin/execlineb -WS1
2 # man - somewhat more generic man wrapper
4 # BUGS
5 #       - man man
7 backtick -in progname { basename ${0} } importas -u progname progname
9 ifelse { test ${#} -gt 2 } {
10         usgerr ${progname} [section] manpage
11 } #else
12         if -nt {
13                 redirfd -w 2 /dev/null
14                 if -nt { mans ${@} }
15                         if -nt { man9 ${@} }
16                                 if -nt { manv ${@} }
17                                         manr ${@}
18         } #then
19                 foreground { fdmove -c 1 2 echo ${progname}: ${@}: not found }
20                 exit 1