Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!rochester!cornell!uw-beaver!rice!sun-spots-request From: phill%med-image.compsci.bristol.ac.uk@nsfnet-relay.ac.uk Newsgroups: comp.sys.sun Subject: Man pages under SunView Keywords: Software Message-ID: <3811@kalliope.rice.edu> Date: 10 Jun 89 17:10:08 GMT Sender: usenet@rice.edu Organization: Sun-Spots Lines: 24 Approved: Sun-Spots@rice.edu X-Sun-Spots-Digest: Volume 8, Issue 28, message 5 of 13 You may be interested in the following short program that we use as a replacement for man (1) under SunView here. It is called tman and has exactly the same usage as man. -----------------------------Delete me---------------------------------- #!/bin/sh # # Author: Phill Everson # Date: 25th April, 1988 # # Usage: tman [sect] [item] (see man(1)) # tman displays the manual page required in a textedit window (man $* 2>/dev/null | colcrt - > /tmp/tman$$ textedit -Er on /tmp/tman$$ rm -f /tmp/tman$$ ) & -----------------------------Delete me--------------------------------- Hope you like it ... Phill Everson Medical Imaging Dept Comp Sci University of Bristol, UK