home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume12 / psf2 / part01 / psmandouble < prev    next >
Encoding:
Text File  |  1990-05-19  |  514 b   |  22 lines

  1. :
  2. #    Print man pages 
  3. #    --- double sided  --  assumes that a two-print-tray printer
  4. #                  such as the Nec Lc890 is being used...
  5. #   This script is a "sample only".  Generally, double sided printing
  6. #   is not a good thing unless your printer is designed to operate
  7. #   cleanly in double-sided mode.
  8.  
  9. if [ $# = 0 ]
  10. then
  11.     echo "Usage:  $0 [chapter] page"
  12.     exit 0
  13. fi
  14.  
  15. case $1 in
  16. [CFMS1-9] | CP | CT | DOS | HW | LOCAL | UCB  )  CHAPTER=$1
  17.                          shift;;
  18. esac
  19.  
  20. man -b $CHAPTER "$1" | pnf -i | psf -2d  | lp
  21. exit 0
  22.