Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!samsung!usc!ucsd!ucbvax!parc.xerox.com!janssen From: janssen@parc.xerox.com (Bill Janssen) Newsgroups: comp.soft-sys.andrew Subject: Re: Reading man pages with Help Message-ID: <0bXcG2QB0KGW4UC35k@holmes.parc.xerox.com> Date: 12 Jan 91 03:37:38 GMT References: <1991Jan11.073641.6417@convex.com> Sender: daemon@ucbvax.BERKELEY.EDU Organization: The Internet Lines: 15 Excerpts from ext.andrew: 10-Jan-91 A few stupid questions Anthony A. Datri@apple.c (489) o Am I the only one who uses Help to read man pages? I, for some reason, prefer the following script: #!/bin/sh if [ "$DISPLAY" = "" ] ; then exec /usr/ucb/man $* else /usr/ucb/man $* | col -b | pipescript -t "nman $*" >/dev/null 2>&1 fi Bill