home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #30 / NN_1992_30.iso / spool / comp / unix / question / 14758 < prev    next >
Encoding:
Internet Message Format  |  1992-12-17  |  1.0 KB

  1. Path: sparky!uunet!ontek!mikey
  2. From: mikey@ontek.com (euphausia superba)
  3. Newsgroups: comp.unix.questions
  4. Subject: Re: man pages
  5. Keywords: boring
  6. Message-ID: <2204@ontek.com>
  7. Date: 16 Dec 92 22:00:05 GMT
  8. References: <Dec.15.08.59.36.1992.22495@gnumath.rutgers.edu>
  9. Organization: Ontek Corporation -- Laguna Hills, California
  10. Lines: 22
  11.  
  12. In comp.unix.questions, lukeh@gnumath.rutgers.edu (Luke Higgins) writes:
  13. | What is the format for man page and how can I read them so that they
  14. | make more sense (or print them out.) Any and all information would be
  15. | appreciated. Example: I have a file called preps which is a
  16. | pretty postscript processor and it has a man page, how do I read it
  17. | so that it looks nice?
  18. | Thanks!!
  19. | Luke
  20. | lukeh@gnumath.rutgers.edu
  21.  
  22. I use this script to print man pages which aren't in the
  23. usual place.  Plop it somewhere in your $PATH and invoke
  24. it with the name of the file the man page is in.
  25.  
  26. #! /bin/sh
  27. echo -n "Reformatting page.  Wait..."
  28. tbl $* | nroff -man > /tmp/mman.$$
  29. page /tmp/mman.$$
  30. rm /tmp/mman.$$
  31.  
  32.